---
title: "Lists all journal entries"
method: GET
path: "/journal-entries"
tags: ["Journal Entries"]
---

# Lists all journal entries

`GET /journal-entries`

Returns GL journal entries with rich filtering (subsidiary, account, date range, reconciliation state).
Use entry ids with retrieve-a-journal-entry before attempting updates or deletes.

## 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` JournalEntry[], required
    - `id` string, uuid, required
    - `subsidiary_id` string, uuid
    - `name` string, required
    - `currency` string, required — Currency code following ISO-4217
    - `related_entity` JournalEntryRelatedEntity
      - `id` string, uuid, required
      - `type` 'CUSTOMER' | 'VENDOR', required
    - `items` JournalEntryItem[], required
      - `id` string, uuid, required
      - `description` string
      - `amount` RoundedMonetaryAmount, required — A monetary amount that must be rounded to the currency's default decimal places (e.g., 2 decimal places for USD).
        - `amount` string, required — Monetary amount in decimal format, using a period (.) as the decimal separator. Must be rounded to the currency's default decimal places (e.g. '1.01' in USD represents 1 dollar and 1 cent).
        - `currency` string, required — Currency code following ISO-4217
      - `original_transaction_amount` RoundedMonetaryAmount — A monetary amount that must be rounded to the currency's default decimal places (e.g., 2 decimal places for USD).
        - `amount` string, required — Monetary amount in decimal format, using a period (.) as the decimal separator. Must be rounded to the currency's default decimal places (e.g. '1.01' in USD represents 1 dollar and 1 cent).
        - `currency` string, required — Currency code following ISO-4217
      - `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 — The date this journal entry was posted to the general ledger.
    - `reversal_date` string, date
    - `attachmentUrl` string, uri
    - `exchange_rate` ExchangeRate
      - `base` string, required — Currency code following ISO-4217
      - `target` string, required — Currency code following ISO-4217
      - `rate` string, required
      - `date` string, date, required
    - `updated_at` string, date-time, required — ISO 8601 timestamp in UTC timezone (must end with 'Z')
  - `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/versions/a2ab794dd5f2/schema)
