cURL
curl --request GET \ --url https://api.example.com/api/transactions/timeline \ --header 'Authorization: Bearer <token>'
[ { "created_date": "2023-12-25", "PAY": 123, "PAY_AMOUNT": 123, "DEPOSIT": 123, "DEPOSIT_AMOUNT": 123, "WITHDRAW": 123, "WITHDRAW_AMOUNT": 123 } ]
Retrieve a timeline of transactions.
JWT token obtained from AWS Cognito or custom authentication service
Transactions timeline retrieved successfully.
Number of PAY transactions.
Sum of PAY transactions.
Number of DEPOSIT transactions.
Sum of DEPOSIT transactions.
Number of WITHDRAW transactions.
Sum of WITHDRAW transactions.