v1

latestOpenAPI 3.1.02026-07-24111224223.3 KB
Journal Entries

Retrieves a journal entry

Retrieves a journal entry with every line, account reference, and reconciliation flag needed for close review or downstream edits. Call before update-a-journal-entry so you can merge new edits with existing lines without accidentally dropping balances.

get/journal-entries/{journal_entry_id}

Path parameters

journal_entry_idstring required

UUID of the journal entry to be used in this operation.

Response

OK

idstring uuid required
subsidiary_idstring uuid
namestring required
currencystring required

Currency code following ISO-4217

datestring date required

The date this journal entry was posted to the general ledger.

reversal_datestring date
attachmentUrlstring uri
updated_atstring date-time required

ISO 8601 timestamp in UTC timezone (must end with 'Z')

Example response

{
  "currency": "USD",
  "items": [
    {
      "amount": {
        "amount": "1.01",
        "currency": "USD"
      },
      "original_transaction_amount": {
        "amount": "1.01",
        "currency": "USD"
      },
      "account_code": "11112"
    }
  ],
  "exchange_rate": {
    "base": "USD",
    "target": "USD"
  }
}