When a physical card whose courier process has been completed reaches the user, the endpoint and http method information used for activating the card and assigning a pin is given below.
| HTTP Method | URL |
|---|---|
| POST | /v1/cp/Issuing/SetCardActiveAndSetPin |
| Params | Type | Mandatory |
|---|---|---|
| account_number | string | Yes |
| wallet_number | string | Yes |
| card_no | string | Yes |
| new_pin | string | Yes |
| Params | Type |
|---|---|
| status | int |
| code | string |
| message | string |
| payload | object |
| card_no | string |
| auth_ecom | bool |
| auth_moto | bool |
| auth_contactless | bool |
| auth_int | bool |
| 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):
{
"account_number" : "XX48400",
"wallet_number": "45613215649",
"card_no": "434610yiwdot1234",
"new_pin": "1234" (4 digits)
}
RESPONSE:
{
"status": 0,
"code": null,
"message": null,
"payload": {
"card_no": "434610xskioo1234",
"auth_ecom": null,
"auth_moto": null,
"auth_contactless": null,
"auth_int": null,
"set_limit": false,
"card_transaction_limit": 0.0,
"card_monthly_limit": null,
"card_daily_limit": null,
"card_transaction_limit_remaining": 0.0,
"card_monthly_limit_remaining": null,
"card_daily_limit_remaining": null,
"daily_max_amount": 0.0,
"weekly_max_amount": 0.0,
"monthly_max_amount": 0.0,
"yearly_max_amount": 0.0,
"created_date_utc": null,
"updated_date_utc": null,
"card_type": null
}
}