The endpoint and http method information used to query the limits and restrictions of the virtual card are given
HTTP Method | URL |
---|---|
POST | /v1/cp/Issuing/GetCardInfo |
Params | Type | Mandatory |
---|---|---|
wallet_number | string | No |
account_number | string | Yes |
card_no | string | Yes |
Params | Type |
---|---|
status | int |
code | string |
message | string |
payload | object |
card_no | string |
auth_ecom | string |
auth_moto | string |
auth_contactless | string |
auth_int | string |
set_limit | bool |
card_transaction_limit | decimal |
card_monthly_limit | decimal |
card_daily_limit | decimal |
card_transaction_limit_remaining | decimal |
card_monthly_limit_remaining | decimal |
card_daily_limit_remaining | decimal |
daily_max_amount | decimal |
weekly_max_amount | decimal |
monthly_max_amount | decimal |
yearly_max_amount | decimal |
created_date_utc | string |
updated_date_utc | string |
card_type | string |
REQUEST (POST) :
{
"card_no": "424210ruols6789",
"account_number": "88776655",
"wallet_number": "2254577846"
}
RESPONSE:
{
"status": 0,
"code": null,
"message": null,
"payload": {
"card_no": "424210ruols6789",
"auth_ecom": false,
"auth_moto": false,
"auth_contactless": false,
"auth_int": false,
"card_transaction_limit": 10000.0000,
"card_monthly_limit": 2000.0000,
"card_daily_limit": 50.0000,
"card_transaction_limit_remaining": 0.0,
"card_monthly_limit_remaining": 1500.0000,
"card_daily_limit_remaining": 20.0000,
"daily_max_amount": 0.0,
"weekly_max_amount": 0.0,
"monthly_max_amount": 0.0,
"yearly_max_amount": 0.0,
"created_date_utc": "2021-10-21T14:09:31.99Z",
"updated_date_utc": "2021-10-25T06:50:53.787Z",
"card_type": "Virtual"
}
}