Calculate Fixed Deposit Interest
POST /api/v{version}/FixedDeposit/accounts/{accountId}/calculate-interest
Description
This endpoint is used to calculate the interest on a fixed deposit account. By providing the account ID and API version, you can request the calculation of accrued interest for a specific fixed deposit account.
Parameters
- version (
string, path, required): The version of the API. - accountId (
integer($int32), path, required): The ID of the fixed deposit account for which interest needs to be calculated. - Accept-Language (
string, header, optional): Change the default response message language from English (en). Available languages arefranden.
Responses
- 200 OK
- Description: Success
- Media Type: Controls Accept header.
Example Value
{
"interestAmount": 1000.0
}
LANGUAGE
CURL REQUEST
curl --request POST \
--url /api/v{version}/FixedDeposit/accounts/{accountId}/calculate-interest \
--header 'accept: application/json' \
--header 'content-type: application/json'
RESPONSE
Click Try It! to start a request and see the response here!