Skip to content

BLINQUIRE

This endpoint provides information on a given transaction through the provided reference, reqid or invoice. It is best to use reference or reqid to inquire about a specific transaction.

POST Request 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 your location(s). Merchant accounts are assigned by store/location. Defaults to 1 if not provided
regThis identifies the POS station, user, terminal or process requesting transaction. Defaults to 1 if not provided
dateDate of the request made to Rover Pay. Supports MM/DD/YYYY or YYYY-MM-DD formats. Defaults to current date if not provided
tranThis is the sequential number for the REG requesting the transaction. Defaults to current time (in seconds) if not provided
referencereference number of the transaction to inquire about. (must provided one of the following: reference, reqid or invoice)
reqidresultId of the transaction to inquire about. (must provided one of the following: reference, reqid or invoice)
invoiceinvoice number of the transaction to inquire abount. (must provided one of the following: reference, reqid or invoice)
debugIf flag is set then error messages will be more verbose

Sample Request

Javascript
{
    "atoken": {{atoken}},
    "entity": {{entity}},
    "store": {{store}},
    "reg": {{reg}},
    "date": "",
    "tran": "",
    "invoice": "",
    "reference": "187023742627",
    "reqid": "",
    "debug": {{debug}}
}

Sample Response

AttributeDescription
verified1 if success 0 if failure
errorCodeError Code
errMessageError Message
resultIdIf error occurred will be empty, otherwise will hold the reqID
authAuthorization code returned from the processor
referenceAuthorization reference number returned from the processor
cardTypeCard type code (e.g., V for Visa, M for Mastercard)
cardDescCard type description (e.g., Visa, Mastercard)
nameCardholder name returned from the processor
tokenCard Token returned from the processor
expiryCredit card expiration date (MMYY format)
amountTransaction amount
fee_amountSurcharge fee amount (if applicable)
fee_authcodeFee authorization code (if applicable)
fee_formatFee format (if applicable)
fee_merchidFee merchant ID (if applicable)
fee_retrefFee retrieval reference (if applicable)
fee_typeFee type (if applicable)
fee_valueFee value (if applicable)
ccvRecBase64 encoded string containing the full CCV record
javascript
{
    "verified": "1",
    "errorCode": "",
    "errorMessage": "",
    "resultId": "1*21396*110*46585*1",
    "auth": "PPS010",
    "reference": "187023742627",
    "cardType": "M",
    "cardDesc": "Master Card",
    "name": "",
    "token": "9545666483645454",
    "expiry": "1228",
    "amount": "0",
    "ccvRec": "NSoqKioqKioqNTQ1NP4xMjI4/v5QUFMwMTD+MTg3MDIzNzQyNjI3/v5FTkNSWVBURUT+Tf5NYXN0ZXIgQ2FyZP7+Qf7+W0QyMF0gQ2hhcmdlIEFjY2VwdGVkLv7+/v7+/jk5KjIxMzk2KjExMCo0NjU4NSox/v7+/v7+/v7+/v7+MP7+/v7+/v7+VFJBTi1JTlH+OTU0NTY2NjQ4MzY0NTQ1NP5CT0xU/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v50dDMyMS0wMDP+/v7+ZmVlX2Ftb3VudP1mZWVfYXV0aGNvZGX9ZmVlX3R5cGX9ZmVlX2Zvcm1hdP1mZWVfdmFsdWX9ZmVlX21lcmNoaWT9ZmVlX3JldHJlZv4wLjAw/VJFVkVSU/1TVVJDSFJH/f0w/f0="
}