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:
| Name | Type | Description |
|---|---|---|
tenantId | string | The unique identifier for the tenant (required). |
countryCode | string | The country code (required). |
userId | string | The unique identifier for the user (required). |
Path Parameters:
| Name | Type | Description |
|---|---|---|
fixedDepositUuid | string | The 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
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!