The relevant endpoint and https method information are given below to query the card's open information.
| HTTP Method | URL |
|---|---|
| POST | /card/getCardCvv2AndExpireDate |
| 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 |
| tenant_customer_no | string |
| customer_no | string |
| card_no | string |
| cvv2 | string |
| expiry_date | int |
REQUEST (POST) :
{
"card_no": "434610lbvqig0051",
"corelation_id": 4000001489104986
}
RESPONSE:
{
"status": 0,
"code": "200",
"message": "Ok",
"payload": {
"tenant_customer_no": "63924705208",
"customer_no": "2441172",
"card_no": "4346100003240051",
"cvv2": "750",
"expiry_date": 202710
}
}