Place Post No Debit (PND) On Account

This places a Post-No-Debit restriction on the provided account, preventing withdrawal transactions.

PUT /api/account/v1/placepnd

To restrict a customer's account with Post-No-Debit, you must pass the required accountNumber to the request body of the PND endpoint.

Headers

NameValue

Content-Type*

application/json

Authorization*

Bearer <token>

Request-Reference

{unique-reference}

Body

NameData Type (length)RequiredDescription

accountNumber

string

Customer's account number

Here is an example request and response with a sample payload sent to the endpoint in Curl format.

Sample Request
curl --location -g --request PUT '{{baseurl}}/api/account/v1/placepnd' \
--header 'Content-Type: application/json' \
--header 'Authorization: bearer ' \
--header 'request-reference;' \
--data '{
  "accountNumber": "1000000730"
}'

Response

//request successful

Last updated