Fixed Deposit Account Transactions
GET /api/v{version}/FixedDeposit/accounts/{accountId}/transactions
Description
This endpoint retrieves the transaction history for a specified fixed deposit account. The account is identified by its unique account ID, and the response includes details of all transactions associated with the account.
Parameters
- accountId (
integer, path, required): The ID of the fixed deposit account. - 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 arefranden.
Responses
200 Success
- Media type: Controls Accept header.
Example Value
{
"transactions": [
{
"transactionId": "string",
"date": "string",
"amount": 0.0,
"type": "string",
"description": "string"
}
]
}
LANGUAGE
CURL REQUEST
curl --request GET \
--url /api/v{version}/FixedDeposit/accounts/{accountId}/transactions \
--header 'accept: application/json' \
--header 'content-type: application/json'
RESPONSE
Click Try It! to start a request and see the response here!