Skip to content

BLTOKENIZE

This endpoint tokenizes a form of payment for use in other endpoints such as BLTOKENAUTH

POST Attribute Format

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✔️
manualIf flag is set to 0 then it requests an magnetic stripe,chip, or contactless card interaction, else if set to 1 it will request manually-entered data
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": "rc7824",
    "manual": "0",
    "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 will be empty, otherwise will hold the reqID that can be used for
ccvRecBase 64 Encoded String which holds the Token
token16 character string
expirycredit card expiration date
signatureBase 64 encode GZIPPED BMP file
Javascript
{
    "verified": "1",
    "errorCode": "",
    "errorMessage": "",
    "resultId": "1*19562*110*rc783*9",
    "ccvRec": "NCoqKioqKioqMDA3Nv4xMjIy/v5QUFM0NDP+MjAzNDQxMDQ3ODU0/v5FTkNSWVBURUT+Vv5WaXNh/v5B/v5bRDIwXSBDaGFyZ2UgQWNjZXB0ZWQu/v7+/v7+MSoxOTU2MioxMTAqcmM3ODMqOf7+/v7+/v7+/v7+/v7+/v7+/v7+VE9LRU4tTkVX/jk0Nzg4NDg3MTg2NTAwNzb+Qk9MVP7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/lr+WP5yYzc4MzD+SDRzSUNBQUFBQUFDLzFOSlJ5NUNUVkFBN05DaEVjSlFBQVhCK3cxUVFqU0Rvb0tJK0xTUzZpaUlUbjRNQXNzZ1luYnR6VE52MjQ5SFZhM1Z2WHFQZWxXalVkWHowNy9OT1FNQUFBQUFnRjhzZjJ4djdnTUFBQUNBeTV3REFDand4ejF1S2dBQQ==",
    "token": "9478848718650076",
    "expiry": "1222",
    "signature": "H4sICAAAAAAC/1NJRy5CTVAA7NChEcJQAAXB+w1QQjSDooKI+LSS6iiITn4MAssgYnbtzTNv249HVa3VvXqPelWjUdXz07/NOQMAAAAAgF8sf2xv7gMAAACAy5wDACjwxz1uKgAA"
}