Freeze Account

Freeze account restricts activity on a customer's account

Overview

With this endpoint, you can restrict activity on a customer's account, such as debit and credit.

To do this, you make a post request by passing AccountNo, AuthenticationCode, ReferenceID, and Reason in the request body to the freeze account endpoint.

Expected Request

{
 "AccountNo":"1100000000",
"AuthenticationCode":"XXXXXX-XXXX-XXXX- XXXX-XXXXXXXXX",
"ReferenceID":"12039394",
"Reason":"suspected fraud"
}

All the payload in this request is required except reason, which is optional.

Expected Response

If your request is successful, you will get a response with status 200

{
    
 "RequestStatus": true,
 "ResponseDescription": "Account frozen - 1100001561",
 "ResponseStatus": "Successful"

}

You can check out the Freeze Account reference to see how this works.