Fixed Deposit Maturity Trigger
POST /fixed-deposit/mature
Description
Triggers the maturity process for a fixed deposit account. This endpoint requires a request body with necessary details about the fixed deposit account and the purpose of withdrawal.
Request Body:
| Name | Type | Description |
|---|---|---|
fixedDepositAccountUUID | string | The unique identifier for the fixed deposit account. |
purposeOfWithdrawal | string | The purpose for withdrawing the matured fixed deposit amount. |
Example Request Body:
{
"fixedDepositAccountUUID": "string",
"purposeOfWithdrawal": "string"
}'
Sample Response: 200
{
"status": true,
"statusCode": 0,
"message": "string",
"data": {},
"errors": [
{
"message": "string",
"data": {},
"descriptiveMessage": "string"
}
]
}
LANGUAGE
CURL REQUEST
curl --request POST \
--url /fixed-deposit/mature \
--header 'accept: application/json' \
--header 'content-type: application/json'
RESPONSE
Click Try It! to start a request and see the response here!