Get timeline
Aggregated account characteristics are accumulated for all accounts of this user.
Query parameters
Limit the transactions included in the aggregation to have a booking date newer than including this date. If not specified the booking date of the oldest transaction is used instead. The format can be either YYYY, YYYY-mm or YYYY-mm-dd.
Limit the transactions included in the aggregation to have a booking date older than including this date. If not specified the current date is used. The format can be either YYYY, YYYY-mm or YYYY-mm-dd.
Defines the frequency that is being used for sampling the data points.
Filters the transactions used for aggregation based on their currency. Transactions in different currencies cannot be accumulated in a meaningful way.
Comma-separated list of access IDs. Only transactions belonging to accounts of these accesses will be selected.
Comma-separated list of account IDs. Only transactions belonging to these accounts will be selected.
Comma-separated list of category IDs. Only transactions matching these categories will be selected.
Comma-separated list of payment partner IDs. Only transactions corresponding to these payment partners will be selected.
Response
Transaction timeline.
Example response
[
{
"period": "2019-12",
"cashflow": 2787.75,
"balance": 10235.38,
"expenses": {
"href": "https://api.nrich.qwist.cloud/rest/transactions?amount_lt=0&since=2020-01-01&until=2020-01-31",
"count": 29,
"total": -1412.25,
"low": -0.2,
"high": -1200
},
"deposits": {
"href": "https://api.nrich.qwist.cloud/rest/transactions?amount_gte=0&since=2020-01-01&until=2020-01-31",
"count": 6,
"total": 4200,
"low": 380.5,
"high": 3200.13
},
"transactions": {
"href": "https://api.nrich.qwist.cloud/rest/transactions?since=2020-01-01&until=2020-01-31",
"count": 35,
"total": 2787.75,
"low": -1200,
"high": 3200.13
}
}
]