FD_CALCULATOR
Use this action code to enter/simulate FD investment plan and calculate the FD returns.
Request
payload: {
"tenure": "180",
"amount": "100.23",
"product": "FD"
}
Request (if tenure is greater than 180 days)
payload: {
"months": "6",
"days": "0",
"amount": "1000",
"product": "FD"
}
Response
{
"interestAmount": "42.00",
"interestRate": "7.0000",
"maturityDate": "03-01-2029",
"maturityAmount": "142.00"
}
Payload
Field | Type | Supported Values | Description |
---|---|---|---|
tenure | Number | <=180days | Tenure of the FD in number of days |
amount | String | Amount of the FD | |
months | String | Provided only when tenure is greater than 180 days then value is given in no of months |
Updated 11 months ago