Update Fixed Deposit
Last updated
Last updated
To update an existing fixed deposit account, you need to make a POST request to the specified endpoint, including the necessary URL path parameters. Additionally, you should pass the required payload in the request body, such as the existing fixed deposit id
, applicableInterestRate
, and any other relevant fields that need to be updated.
PUT
/api/fixeddepositaccount/v1/update
A successful request will return a confirmation message in the response.
This process allows you to modify the details of an existing fixed deposit account.
Headers
Name | Value |
---|---|
Body
Name | Data Type (length) | Required | Description |
---|---|---|---|
Content-Type*
application/json
Authorization*
Bearer <token>
Request-Reference
{unique-reference}
id
string
The unique identifier for the fixed deposit (Guid)
useProductInterestRate
boolean
Set true
to use the default interest rate of the product and false for no
applicableInterestCode
string
The interest code should be applied if you are not using the product's default interest rate.
applicableInterestRate
integer
The interest rate to apply if not using the product's default The percentage must be rounded to a maximum of three decimal places.
partLiquidationCharge
integer
The charge applied if the fixed deposit is partially liquidated The percentage must be rounded to a maximum of three decimal places.
holdFundAtMaturity
boolean
Indicates whether to hold the funds in the account at maturity, Set true for yes
and false
for no
applyRollover
boolean
Indicates whether to apply rollover at maturity
rolloverOption
string
The rollover option to apply
The enumerations are:
1
= RolloverPrincipalOnly
2
= RolloverPrincipalAndInterest