Change Card PIN

Allows customers to update their card's PIN, which is used when a client authorizes a transaction

  • Endpoint: /api/v1/customer/cards/changecardpin

  • Method: POST

Request Body Example:

{
    "TopUpCardsId": 1234,
    "OldPin": "1234",
    "NewPin": "5678"
}

Success Response Example:

{
  "id": 0,
  "status": "1",
   "errors": [
    {
      "fieldName": "string",
      "messageCode": "string"
    }
  ]
}

Last updated