---
title: "List end-of-day summaries"
method: GET
path: "/financial-data/v2beta/accounts/{id}/end-of-day-summaries"
tags: ["Accounts"]
---

# List end-of-day summaries

`GET /financial-data/v2beta/accounts/{id}/end-of-day-summaries`

Returns a list of end-of-day reporting summaries, on a per
booked date basis, for the account identified by `id`.

Note that these summaries are only available based on
end-of-day reporting, e.g. `camt.053`, `MT940` or equivalent
end-of-day reporting bank statements.

Absence of a summary entry for a given account and date means
Atlar has not (yet) processed booked transactions based on
end-of-day reporting.

The primary use case for these summaries is to provide a means
to determine when it is safe to assume all transactions for a
given booked date can be listed using the API endpoint [GET
https://api.atlar.com/financial-data/v2/transactions](https://docs.atlar.com/reference/get_financial-data-v2-transactions-1).

## Path parameters

- `id` string, required

## Query parameters

- `limit` integer
- `token` string
- `date` string, date

## Response `200`

List of summaries.

- object
  - `items` AccountReportingSummary[], required — A list of resources.
    - `id` string, required — Unique resource identifier.
    - `organizationId` string, required — Unique resource identifier for an Organization.
    - `accountId` string, required — Unique resource identifier.
    - `type` 'BOOKED', required
    - `date` string, date, required — `full-date` notation as defined by [RFC 3339, section 5.6](https://datatracker.ietf.org/doc/html/rfc3339#section-5.6), for example, `2017-07-21`.
    - `transactionsControlData` SummaryTransactionsControlData — Control data for all the transactions for the `date` which this summary spans. Transactions control data is only included in the response if the requesting principal have authorization scopes `transactions:read`.
      - `total` ControlData, required
        - `sum` Amount, required
          - `currency` string, required — Three-letter ISO 4217 currency code.
          - `stringValue` string, required — A string representation of the amount value. This will be a decimal number if the currency has decimals. The number is not formatted for display purposes (e.g. with locale specific thousand separator) and always contains the dot `.` character as decimal separator.
          - `value` integer, required — The amount value as an integer (int64) represented in currency minor units (e.g. 15.02 EUR is represented as the value 1502).
        - `count` integer, required
      - `net` ControlData, required
        - `sum` Amount, required
          - `currency` string, required — Three-letter ISO 4217 currency code.
          - `stringValue` string, required — A string representation of the amount value. This will be a decimal number if the currency has decimals. The number is not formatted for display purposes (e.g. with locale specific thousand separator) and always contains the dot `.` character as decimal separator.
          - `value` integer, required — The amount value as an integer (int64) represented in currency minor units (e.g. 15.02 EUR is represented as the value 1502).
        - `count` integer, required
    - `version` integer, required — Resource version. Starts at value `1` when the resource is created and increases by one for each successive update.
    - `etag` string, required — [ETag](https://en.wikipedia.org/wiki/HTTP_ETag) based on the resource version. This can be passed along in `If-Match` HTTP header when updating a resource to perform a conditional update.
  - `nextToken` string, required — Pagination token for next page. The value will be a non-empty string if there are more resources to be fetched. The value will be an empty string if there are no more resources to be fetched.
  - `token` string, required — The pagination token that was used for this request. The value will be an empty string if no `token` query parameter was provided with the request.
  - `limit` integer, required — The page limit that was used for this request.

## Other responses

- `404` — Resource not found.

---

[API](https://skmtc.net/atlar/apis/atlar-api-v2.md) · [All operations](https://skmtc.net/atlar/apis/atlar-api-v2/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/atlar/atlar-api-v2/revisions/9c5e194ccf5d/schema)
