Unfreeze Account

The unfreeze account lifts restrictions on a customer account. The 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.

// Live URL
http://api.mybankone.com/thirdpartyapiservice/apiservice/Account/UnFreezeAccount

POST https://staging.mybankone.com/thirdpartyapiservice/apiservice/Account/UnFreezeAccount

Request Body

Name
Type
Description

AccountNo*

String

Customer's account number

AuthenticationCode*

String

Authentication code for this request

ReferenceID*

String

Unique reference per request

Reason

String

Reason for unfreezing the account

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

}

Last updated