Skip to main content

Create Fixed Deposit Account

POST /api/v{version}/FixedDeposit/accounts/create

Description

This endpoint is used to create a new fixed deposit account. The request includes details about the account owner, the fixed deposit product, the amount to deposit, the deposit period, and approval status.

Parameters

  • 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 are fr and en.

Request Body

  • Media Type: application/json

Example Value

{
"ownerId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"productId": 0,
"depositAmount": "string",
"depositPeriod": "string",
"approve": true
}

Responses

200 OK

Description: Indicates that the fixed deposit account was successfully created. Media type: Controls Accept header.

LANGUAGE

AUTHORIZATION

Bearer

CURL REQUEST


curl --request POST \ 
--url /api/v{version}/FixedDeposit/accounts/create \
--header 'accept: application/json' \
--header 'content-type: application/json'

RESPONSE


Click Try It! to start a request and see the response here!