v1

latestOpenAPI 3.0.32026-07-268955212.1 KB
journal-entries

Get a journal entry

Retrieve the information of the journal with the matching journalEntryId.

Scope: journal-entries:read

get/companies/{companyId}/journal-entries/{journalEntryId}

Response

Journal entry found

idstring uuid
titlestring
journalEntryNumberstring
datestring date
reversingJournalEntryIdstring uuid nullable
reversedByJournalEntryIdstring uuid nullable

Example response

{
  "id": "a419cf69-db6f-4de9-992c-b1a60942a443",
  "title": "invoice 1234",
  "journalEntryNumber": "V342",
  "date": "2024-10-10",
  "items": [
    {
      "id": 1,
      "debit": 200,
      "credit": 0,
      "account": 1930,
      "tags": []
    },
    {
      "id": 2,
      "debit": 0,
      "credit": 40,
      "account": 3011,
      "tags": []
    },
    {
      "id": 3,
      "debit": 0,
      "credit": 160,
      "account": 2611,
      "tags": []
    }
  ],
  "tags": []
}