The relevant endpoint and https method information for querying the authorization information for the card are given below.
| HTTP Method | URL |
|---|---|
| POST | /card/getCardAuthorizationInfo |
| Params | Type | Mandatory | Description |
|---|---|---|---|
| card_no | string | Yes | Card Number |
| corelation_id | string | Yes | Corelation Id |
| Params | Type |
|---|---|
| status | int |
| code | string |
| message | string |
| payload | object |
| card_no | string |
| card_token | string |
| authDomEcom | boolean |
| authDomMoto | boolean |
| authDomNoCVV2 | boolean |
| authDomContactless | boolean |
| authDomCash | boolean |
| authIntEcom | boolean |
| authIntMoto | boolean |
| authIntNoCVV2 | boolean |
| authIntContactless | boolean |
| authIntCash | boolean |
| authIntPosSale | boolean |
| auth3dSecure | boolean |
REQUEST (POST) :
{
"card_no": "434610lbvqig0051",
"corelation_id": 4000001489104986
}
RESPONSE
{ {
"status": 0,
"code": "200",
"message": "",
"payload": {
"cardNo": "434610lbvqig0051",
"cardToken": null,
"authDomEcom": true,
"authDomMoto": true,
"authDomNoCVV2": true,
"authDomContactless": true,
"authDomCash": true,
"authIntEcom": true,
"authIntMoto": true,
"authIntNoCVV2": true,
"authIntContactless": true,
"authIntCash": true,
"authIntPosSale": true,
"auth3dSecure": true
}
}