Premature Close Fixed Deposit
POST /api/v{version}/FixedDeposit/accounts/{accountId}/premature-close
Description
This endpoint is used to initiate the premature closure of a fixed deposit account. The request requires the account ID of the fixed deposit, as well as details about the closure including any notes, closure identifiers, and transfer descriptions.
Parameters
- accountId (
integer, path, required): The ID of the fixed deposit account to be closed prematurely. - version (
string, path, required): The version of the API. - Accept-Language (
string, header, optional): Change the default response message language from English (en). Available languages arefranden.
Request Body
- Media Type:
application/json
Example Value
{
"note": "string",
"onAccountClosureId": "string",
"toSavingsAccountId": 0,
"transferDescription": "string"
}
Responses
200 OK
- Description: Indicates that the premature closure request was successfully processed.
- Media Type: Controls Accept header.
LANGUAGE
CURL REQUEST
curl --request POST \
--url /api/v{version}/FixedDeposit/accounts/{accountId}/premature-close \
--header 'accept: application/json' \
--header 'content-type: application/json'
RESPONSE
Click Try It! to start a request and see the response here!