Update Card Pin

URL

The endpoint and http method information used to update the pin value of the relevant card are given below.

HTTP Method URL
POST /v1/cp/Issuing/UpdateCardPin

Request Params

Params Type Mandatory
card_no string Yes
old_pin string Yes
new_pin string Yes

Response Params

Params Type
status int
code string
message string
payload object

REQUEST (POST):

{
  "card_no": "434610oahelc6789",
  "old_pin": "1234", (4 digits)
  "new_pin": "5678" (4 digits)
}

RESPONSE:

{
    "status": 0,
    "code": null,
    "message": null,
    "payload": true
}
}