Freeze Account

When you need to restrict activity on a customer's account, such as debit and credit, you use this endpoint.

To freeze account, you make a post request by passing AccountNo, Authentication code, ReferenceID, and Reason in the request body to the freeze account endpoint. The payload in this request are required except reason which is optional.

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

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

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 the account freeze

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

}

Last updated