Place Lien on Account

Placing a Lien on an account restricts any transaction that reduces the withdrawable balance to less than the supplied amount.

To place lien on an account you make a post request by passing AccountNo, Authentication Code, RefrenceID, Amount, and Reason in the request body to the place lien on account endpoint. The payload for this request are all required except Reason which is optional.

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

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

Request Body

Name
Type
Description

AccountNo*

String

The customer account

AuthenticationCode*

String

Authentication code for this request

ReferenceID*

String

Unique reference per request

Amount*

String

Lien amount in Naira

Reason

String

Reason for placing lien

{
 "RequestStatus": true,
 "ResponseDescription": "Lien sucessfully placed on account.",
 "ResponseStatus": "Successful"
}

Last updated