Skip to main content

Premature Closure of Fixed Deposit

POST /fixed-deposit/premature-closure

Description

Allows users to request the premature closure of a fixed deposit account. This endpoint requires authentication and provides a structured request for withdrawal purposes.

Headers:

NameTypeDescription
tenantIdstringThe unique identifier for the tenant (required).
countryCodestringThe country code (required).
userIdstringThe unique identifier for the user (required).

Request Body:

NameTypeDescription
fixedDepositAccountUUIDstringThe unique identifier of the fixed deposit account (required).
purposeOfWithdrawalstringThe reason for prematurely withdrawing funds (required).

Example Request Body:

{
"fixedDepositAccountUUID": "string",
"purposeOfWithdrawal": "string"
}'

Sample Response: 200

{
"status": true,
"statusCode": 0,
"message": "string",
"data": {},
"errors": [
{
"message": "string",
"data": {},
"descriptiveMessage": "string"
}
]
}

LANGUAGE

AUTHORIZATION

Bearer

CURL REQUEST


curl --request POST \ 
--url /fixed-deposit/premature-closure \
--header 'accept: application/json' \
--header 'content-type: application/json'

RESPONSE


Click Try It! to start a request and see the response here!