The relevant endpoint and https method information for querying the card creation limit is given below.
| HTTP Method | URL |
|---|---|
| POST | /card/getCreateCardLimit |
| Params | Type | Mandatory | Description |
|---|---|---|---|
| wallet_number | string | Yes | Wallet Number |
| product_code | string | Yes | Product Code |
| tenant_code | string | No | Tenant Code |
| corelation_id | string | No | Corelation Id |
| Params | Type |
|---|---|
| status | int |
| code | string |
| message | string |
| payload | object |
| create_card_limit | integer |
REQUEST (POST) :
{
"wallet_number": "156156156",
"product_code": "HPS40",
"tenant_code": "",
"corelation_id": ""
}
RESPONSE:
{
"status": 0,
"code": "200",
"message": "",
"payload": {
"create_card_limit": 2
}
}