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,
  "details": {
      "TopUpCardsId": 1016
  },
  "status": "1",
  "errors": []
}

Last updated