Activate Fixed Deposit Account
POST /api/v{version}/FixedDeposit/accounts/{accountId}/activate
Description
This endpoint is used to activate a fixed deposit account. The request requires specifying the account ID and the API version. The activation process will enable the account for transactions according to the fixed deposit terms.
Parameters
- version (
string, path, required): The version of the API. - accountId (
integer($int32), path, required): The ID of the fixed deposit account to be activated. - Accept-Language (
string, header, optional): Change the default response message language from English (en). Available languages arefranden.
Responses
- 200 OK
- Description: The request was successful, and the fixed deposit account has been activated.
Example Value
{
"status": true,
"statusCode": 200,
"message": "Fixed deposit account activated successfully",
"data": {},
"errors": []
}
LANGUAGE
CURL REQUEST
curl --request POST \
--url /api/v{version}/FixedDeposit/accounts/{accountId}/activate \
--header 'accept: application/json' \
--header 'content-type: application/json'
RESPONSE
Click Try It! to start a request and see the response here!