Reject Fixed Deposit Account
POST /api/v{version}/FixedDeposit/accounts/{accountId}/reject
Description
This endpoint is used to reject a fixed deposit account. The request requires the accountId to identify which account to reject, and the API version must be specified.
Parameters
- accountId (
integer, path, required): The ID of the fixed deposit account to be rejected. - 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.
Responses
- 200 OK
- Description: Indicates that the fixed deposit account has been successfully rejected.
- Media type: Controls Accept header.
Example Value
{
"status": "success",
"message": "Fixed deposit account has been successfully rejected."
}
LANGUAGE
CURL REQUEST
curl --request POST \
--url /api/v{version}/FixedDeposit/accounts/{accountId}/reject \
--header 'accept: application/json' \
--header 'content-type: application/json'
RESPONSE
Click Try It! to start a request and see the response here!