v1

latestOpenAPI 3.1.02026-07-26549156879.0 KB
Finance > JournalLine

Reads all Journal lines

Reads all Journal lines

get/api/2026-07-01/resources/finance/journal_lines

Query parameters

ids[]string[]

Filter by specific JournalLine IDs

Filter by specific JournalLine IDs

[
  "1234"
]
journal_entry_ids[]string[]

Filter by specific JournalEntry IDs

Filter by specific JournalEntry IDs

[
  "4321"
]
account_ids[]string[]

Filter by specific Account IDs

Filter by specific Account IDs

[
  "9876"
]
journal_entry_types[]string[]

Filter by JournalEntry types, accepted values: bank, bill, invoice, credit_note, merged_ledger_account, reconciliation, tax, receipt, payroll_result, external

Filter by JournalEntry types, accepted values: bank, bill, invoice, credit_note, merged_ledger_account, reconciliation, tax, receipt, payroll_result, external

[
  "bank",
  "bill",
  "invoice",
  "credit_note",
  "merged_ledger_account",
  "reconciliation",
  "tax",
  "receipt",
  "payroll_result",
  "external"
]
reconciliation_status'pending' | 'reconciled' | 'snoozed'

The reconciliation status of the journal line

Example:pending

The reconciliation status of the journal line

descriptionstring
updated_fromstring

Start date for filtering journal line records based on their last update.

Example:2025-01-01

Start date for filtering journal line records based on their last update.

Response

OK

Example response

{
  "data": [
    {
      "id": "1234",
      "number": 1,
      "credit_amount_cents": 100,
      "journal_entry_id": "4321",
      "account_id": "9876",
      "fully_reconciled_at": "2025-01-01T00:00:00.000Z",
      "external_id": "EXT-LINE-001",
      "updated_at": "2025-01-01T00:00:00.000Z"
    }
  ]
}