Liquidate Fixed Deposit
This endpoint is used to liquidate fixed deposit on an account
Overview
This endpoint is used to liquidate a fixed deposit account fully or partially
Required Payload
Name | DataType | Description | |
---|---|---|---|
AccountNumber | String | Customer Account | Mandatory |
Amount | Integer | Amount | Mandatory |
LiquidationType | Integer (0=Full liquidation, 1=Partial liquidation) | Liquidation type | Mandatory |
Narration | String | Narration | Mandatory |
Sample Payload
{
"AccountNumber": "001700121011030425",
"Narration": "Liquidate account",
"Amount": 2000,
"LiquidationType": 0
}
Sample Response
{
"IsSuccessful": true,
"CustomerIDInString": null,
"Message": "Posting was successfull.\n Reference No. is 20090989547.",
"TransactionTrackingRef": null,
"Page": null
}
Updated 16 days ago