Get bank account transactions
Retrieve transactions for a specific bank account.
Supports filtering by date range and location.
Request
Add the parameter Authorization
to Headers Example:Authorization: ********************
or
Request Code Samples
curl --location --request GET 'https://mock.apidog.com/m1/1052146-0-default/banks/bank_acc_123/transactions?from=2024-01-01&to=2024-01-31&locationId=all&page&pageSize' \
--header 'Authorization: Bearer <token>'
Responses
application/json
Bank transactions retrieved successfully
{
"data": [
{
"id": "txn_123",
"txn_date": "2024-01-15",
"token": "#TXN-001",
"description": "Bank deposit",
"amount": 5000,
"balance": 105000,
"location": "Main Store",
"posted_by": "John Doe"
},
{
"id": "txn_124",
"txn_date": "2024-01-16",
"token": "#TXN-002",
"description": "Withdrawal",
"amount": -2000,
"balance": 103000,
"location": "Main Store",
"posted_by": "Jane Smith"
}
],
"total": 100,
"page": 1,
"pageSize": 200
}
Modified at 2025-12-02 02:19:30