This is the endpoint that changes pin for a wallet.
Request Message Description
Field# | Field name | Data type | Required | Max Length | Description | Options |
---|---|---|---|---|---|---|
1 | walletIdType | Map | yes | wallet identifier type | ||
2 | channel | String | yes | 30 | channel sending request | “WEB” or “USSD” or “SERVICE” or “MOBILE” |
3 | walletId | String | yes | wallet identifier | ||
4 | oldPinEncrypted | String | yes | Old Pin Encrypted | ||
5 | newPinEncrypted | String | yes | New Pin Encrypted | ||
6 | domain | String | no | 200 | wallet domain |
Endpoint
Base URL : https://api-gateway.interswitchng.com
Request: POST
/generic-wallet/api/v1/cards/change/pin
Headers
Content-Type: application/json
Authorization: {passport generated bearer token}
Sample Request
{
"walletIdType": "NIN",
"walletId": "9999",
"channel": "SERVICE",
"oldPinEncrypted":"31d7e6e95aa309fc21127391833733eb",
"newPinEncrypted": "31d7e6e95aa309fc21127391833733eb",
"domain" : "ISW"
}
Sample Response (success)
{
"statusCode": "200",
"responseCode": "00",
"responseMessage": "Successful",
"errors": null,
"modelList": null,
"count": 0
}