---
title: "Lists journal entries with reporting currency amounts"
method: GET
path: "/reports/journal-entries"
tags: ["Reports"]
---

# Lists journal entries with reporting currency amounts

`GET /reports/journal-entries`

Returns journal entries with line item amounts converted to the reporting currency.

## Query parameters

- `limit` integer
- `cursor` string — If defined, a cursor to retrieve the next page.
- `subsidiary_id` string, uuid
- `updated.gt` string, date-time
- `date.gte` string, date
- `date.lte` string, date
- `account_ids` string[]
- `sort_by` 'created' | 'updated'

## Response `200`

OK

- object
  - `journal_entries` ReportingJournalEntry[], required
    - `id` string, uuid, required
    - `subsidiary_id` string, uuid, required
    - `name` string, required
    - `related_entity` JournalEntryRelatedEntity
      - `id` string, uuid, required
      - `type` 'CUSTOMER' | 'VENDOR', required
    - `items` ReportingJournalEntryItem[], required
      - `id` string, uuid, required
      - `description` string
      - `local_amount` MonetaryAmount, required
        - `amount` string, required — Monetary amount in decimal format, using a period (.) as the decimal separator. (e.g. '1.01' in $ currency represents 1$ and 1 cent.)
        - `currency` string, required — Currency code following ISO-4217
      - `reporting_amount` MonetaryAmount, required
        - `amount` string, required — Monetary amount in decimal format, using a period (.) as the decimal separator. (e.g. '1.01' in $ currency represents 1$ and 1 cent.)
        - `currency` string, required — Currency code following ISO-4217
      - `original_transaction_amount` MonetaryAmount
        - `amount` string, required — Monetary amount in decimal format, using a period (.) as the decimal separator. (e.g. '1.01' in $ currency represents 1$ and 1 cent.)
        - `currency` string, required — Currency code following ISO-4217
      - `exchange_rate` string — The exchange rate used to convert the amount to reporting currency
      - `account_id` string, uuid, required — Immutable account identifier.
      - `account_code` string, required — The account code found in the Chart of Accounts
      - `side` 'DEBIT' | 'CREDIT', required
      - `fields` object[]
        - `field_id` string, uuid, required
        - `field_value_id` string, uuid, required
    - `date` string, date, required
    - `reversal_date` string, date
    - `attachmentUrl` string, uri
  - `pagination` Pagination
    - `next_cursor` string — If defined, a cursor to retrieve the next page.

## Other responses

- `default` — Error

---

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