Skip to content

BLTOKENCREDIT

This endpoint is used to CREDIT a specified amount to a tokenized form of payment.

POST Request Attributes

AttributeDescriptionRequired
atokenAuthorization token to allow access to the service✔️
entityThis tells the api what database to use for your transactions✔️
storeThe unique assignment for you location(s) Merchant accounts are assigned by store/location✔️
regthis identifies the POS station, user, terminal or process requesting transaction✔️
dateDate of the request made to Rover Pay
tranThis is the sequential number for the REG requesting the transaction
invoiceInvoice must be unique per card request in order to request Inquiry from blinquire
ctokenThis is the token received from BLTOKENIZE or BLAUTH✔️
expiryCredit Card expiration date✔️
amountAmount to be credited back to the credit card✔️
debugIf flag is set then error messages will be more verbose

Example request

Javascript
{
    "atoken": {{atoken}},
    "entity": {{entity}},
    "store": {{store}},
    "reg": {{reg}},
    "date": "",
    "tran": "rc783",
    "invoice": "rc7827",
    "ctoken": "9478848718650076",
    "expiry": "1222",
    "amount": "-353",
    "debug": {{debug}}
}

Example Response

AttributeDescription
verifiedFlag will be set to 1 if call was successful or 0 if it failed
errorCodeError Code
errMessageError Message
resultIdIf error occurred this will be empty, otherwise will hold the reqID
ccvRecBase 64 Encoded String which holds the Token
Javascript
{
    "verified": "1",
    "errorCode": "",
    "errorMessage": "",
    "resultId": "1*19562*110*rc783*10",
    "ccvRec": "NCoqKioqKioqMDA3Nv4xMjIy/v5SRUZVTkT+MjAzMjUzMTUxMDc0/v5FTkNSWVBURUT+Vv5WaXNh/v5Q/v5bRDIwXSBDaGFyZ2UgQWNjZXB0ZWQu/v7+/v7+MSoxOTU2MioxMTAqcmM3ODMqMTD+/v7+/v7+/v7+/v4tMzUz/v7+/v7+/v5UT0tFTi1DUkVESVT+OTQ3ODg0ODcxODY1MDA3Nv5CT0xU/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+Vf5V/nJjNzgyNw=="
}