Skip to main content

Get Single Fixed Deposit Account

GET /fixed-deposit/{fixedDepositUuid}

Description

Fetches details of a single fixed deposit account identified by the fixedDepositUuid. This endpoint requires authentication headers and a valid fixedDepositUuid.

Headers:

NameTypeDescription
tenantIdstringThe unique identifier for the tenant (required).
countryCodestringThe country code (required).
userIdstringThe unique identifier for the user (required).

Path Parameters:

NameTypeDescription
fixedDepositUuidstringThe unique identifier of the fixed deposit account (required).

Example Request:

curl -X GET "{{baseURL}}/fixed-deposit/{fixedDepositUuid}" \
-H "Authorization: Bearer [access_token]" \
-H "tenantId: [tenantId]" \
-H "countryCode: [countryCode]" \
-H "userId: [userId]"

Sample Response: 200

{
"status": true,
"statusCode": 0,
"message": "string",
"data": {},
"errors": [
{
"message": "string",
"data": {},
"descriptiveMessage": "string"
}
]
}

LANGUAGE

AUTHORIZATION

Bearer

CURL REQUEST


curl --request GET \ 
--url /fixed-deposit/{fixedDepositUuid} \
--header 'accept: application/json' \
--header 'content-type: application/json'

RESPONSE


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