Unfreeze Account

The unfreeze account lifts restrictions on a customer account.

Overview

When an account is unfrozen, a customer can now perform actions like debit and credit.

To unfreeze a customer's account, make a post request by passing AccountNo, Authentication Code, RefrenceID and Reason in the request body to the unfreeze account endpoint. It is important to note that RefrenceID for this request should match the one from the freeze account request to avoid an error response.

Expected Request

{
 "AccountNo":"1100000000",
"AuthenticationCode":"HXXXXXX-XXXX-XXX- XXXX-XXXXXXXXXXX",
"ReferenceID":"12039394",
"Reason":"Cleared Suspected Fraud"
}

Expected Response

If the request is successful, it returns a status code of 200 with a response body.

{
 
 "RequestStatus": true,
 "ResponseDescription": "Account successfully unfrozen.",
 "ResponseStatus": "Successful"

}

You can check out API reference to Unfreeze Account