Remove Post No Debit (PND) On Account
Name
Value
Name
Data Type (length)
Required
Description
//request successfulLast updated
This revokes a Post-No-Debit restriction on the provided account, allowing customers to perform withdrawal transactions.
PUT /api/account/v1/removepnd
To remove PND on a customer's account, you must pass the required accountNumber to the request body of the PND endpoint.
Headers
Content-Type*
application/json
Authorization*
Bearer <token>
Request-Reference
{unique-reference}
Body
accountNumber
string (10)
Customer's account number
Here is an example request and response with a sample payload sent to the endpoint in Curl format.
curl --location -g --request PUT '{{baseurl}}/api/account/v1/removepnd' \
--header 'Content-Type: application/json' \
--header 'Authorization: bearer ' \
--header 'request-reference;' \
--data '{
"accountNumber": "1000000730"
}'Response
//request successfulLast updated