Skip to main content

Get All Fixed Deposit Products

GET /api/v{version}/FixedDeposit/products/get-all

Description

This endpoint retrieves a list of all available fixed deposit products. It provides details about each product, including their terms, interest rates, and other relevant information.

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.

Responses

  • 200 OK
    • Media Type: Controls Accept header.
    • Description: Success response indicating that the request was successfully processed.
    • Example Value:
{
"products": [
{
"id": "string",
"name": "string",
"interestRate": "number",
"term": "string",
"minimumDeposit": "number"
}
]
}

LANGUAGE

AUTHORIZATION

Bearer

CURL REQUEST


curl --request GET \ 
--url /api/v{version}/FixedDeposit/products/get-all \
--header 'accept: application/json' \
--header 'content-type: application/json'

RESPONSE


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