- Get a managed account statement (legacy)
Deprecated in favour of GET /managed_accounts/{id}/statements, which provides an authoritative, immutable statement of record for an instrument over a period, as explained in our changelog.
This endpoint returns a list of transactions (in our legacy format) for a managed account, identified by the id path parameter, matching the criteria provided in the request.
Filter for transactions having transaction timestamp before toTimestamp. Timestamp is expressed in Epoch timestamp using millisecond precision. If omitted, all matching transactions up to the present will be included. If both fromTimestamp and toTimestamp are provided, toTimestamp must be greater than fromTimestamp.
Returns transactions that span multiple movements as a single entry. Only includes transactions that have been completed. Defaults to true for PDF statements, false otherwise. Note: due to the fact that only completed transactions are included, some transactions that are in progress and have modified the balance of the instrument will not be shown, which could lead to seemingly inconsistent balance being displayed.
Filter by the transaction type. Leave out to fetch all entries.
- Weavr Sandbox Environmenthttps://sandbox.weavr.io/multi/deprecated/managed_accounts/{id}/statement
- Mock serverhttps://api.weavr.io/_mock/products/multi/openapi/deprecated/managed_accounts/{id}/statement
curl -i -X GET \
'https://sandbox.weavr.io/multi/deprecated/managed_accounts/{id}/statement?offset=0&statementLimit=1&orderByTimestamp=ASC&fromTimestamp=0&toTimestamp=0&showFundMovementsOnly=true&singleEntryPerTransaction=true&transactionType=AUTHORISATION' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'accept: string' \
-H 'api-key: YOUR_API_KEY_HERE'- application/json
- application/pdf
- text/csv
{ "entry": [ { … } ], "count": 0, "responseCount": 0, "startBalance": { "currency": "str", "amount": 0 }, "endBalance": { "currency": "str", "amount": 0 }, "footer": "string" }