This revokes a Post-No-Credit (PNC) restriction on the provided account, allowing customers to receive incoming transactions.
PUT /api/account/v1/removepnc
PUT
/api/account/v1/removepnc
To remove a PNC on a customer account, you must pass the required accountNumber to the request body.
accountNumber
Headers
Content-Type*
application/json
Authorization*
Bearer <token>
Request-Reference
{unique-reference}
Body
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/removepnc' \ --header 'Content-Type: application/json' \ --header 'Authorization: bearer ' \ --header 'request-reference;' \ --data '{ "accountNumber": "1000000730" }'
Response
//request successful
Last updated 1 year ago