Update Account Lien
The request body should include specific payloads such as a required id
and other parameters like FormOfLien
, and amount
, allowing you to modify and update existing lien information.
POST
/api/accountlien/v1/updatelien
A successful request will return a confirmation message indicating that the lien has been updated along with any relevant details.
This process allows for the secure and efficient updating of liens on accounts, ensuring that accurate and current financial information is maintained.
Headers
Name | Value |
---|---|
Content-Type* |
|
Authorization* |
|
Request-Reference |
|
Body
Name | Data Type (length) | Required | Description |
---|---|---|---|
| string | The unique identifier of the lien (GUID) | |
| string | The form or type of lien. Lien type can be a flat amount or a percentage
The enumerations are:
| |
| integer | The amount of money to be held as a lien
The amount should be sent in the base unit of the currency. For example, | |
| integer | The updated percentage of the account balance to be held The percentage must be rounded to a maximum of three decimal places. | |
| string | Updated description or reason for the lien | |
| integer | Updated duration of the lien in months | |
| date | Updated start date of the lien |
Here is an example request and response with a sample payload sent to the endpoint in Curl format.
Last updated