The endpoint and http method information where the entered card information is checked is given below.
HTTP Method | URL |
---|---|
POST | /v1/cp/Issuing/ValidationForExpireDateAndCvv |
Params | Type | Mandatory |
---|---|---|
account_number | string | Yes |
wallet_number | string | Yes |
card_no | string | Yes |
expire_date | string | Yes |
cvv | string | Yes |
Params | Type |
---|---|
status | int |
code | string |
message | string |
payload | object |
REQUEST (POST):
{
"account_number": "7431271674",
"wallet_number": "2315648563",
"card_no": "434610tplype6789",
"expire_date": "0627",
"cvv": "502"
}
RESPONSE:
{
"status": 0,
"code": null,
"message": null,
"payload": true
}
}
Fail Response:
{
"status": 2,
"code": "504",
"message": "İletilen kart bilgileri hatalı",
"payload": false
}