The endpoint and http method information to be used for the card pin is given.
| HTTP Method | URL |
|---|---|
| POST | /v1/cp/Issuing/SetCardPin |
| Params | Type | Mandatory |
|---|---|---|
| card_no | string | Yes |
| new_pin | string | Yes |
| Params | Type |
|---|---|
| status | int |
| code | string |
| message | string |
| payload | object |
REQUEST (POST):
{
"card_no": "434610oahelc6789",
"new_pin": "1234" (4 digits)
}
RESPONSE:
{
"status": 0,
"code": null,
"message": null,
"payload": true
}
}