---
title: "Get a journal entry"
method: GET
path: "/companies/{companyId}/journal-entries/{journalEntryId}"
tags: ["journal-entries"]
---

# Get a journal entry

`GET /companies/{companyId}/journal-entries/{journalEntryId}`

Retrieve the information of the journal with the matching journalEntryId.

**Scope:** `journal-entries:read`

## Response `200`

Journal entry found

- JournalEntry
  - `id` string, uuid
  - `title` string
  - `journalEntryNumber` string
  - `date` string, date
  - `items` JournalEntryItem[], required
    - `id` integer
    - `debit` number, double
    - `credit` number, double
    - `account` integer
    - `tags` JournalEntryTag[] — Transaction-level tags applied to this specific line item. Tags must be applied either at the transaction level (on individual line items) or at the verification level (on the journal entry), but not both on the same journal entry. Within a tag group, weights on the same transaction must sum to at most 1.
      - `tagId` string, uuid, required — Unique identifier of the tag (value) within the tag group
      - `tagGroupId` string, uuid — Unique identifier of the tag group this tag belongs to
      - `tagName` string — Display name of the tag
      - `tagGroupName` string — Display name of the tag group
      - `weight` number, double, required — Allocation weight between 0 (exclusive) and 1 (inclusive). Controls how costs/revenues are split in reports. Within a tag group, weights on the same journal entry or transaction must sum to at most 1.
  - `tags` JournalEntryTag[] — Verification-level tags applied to the entire journal entry. Tags must be applied either at the verification level (on the journal entry) or at the transaction level (on individual line items), but not both on the same journal entry. Within a tag group, weights on the same journal entry must sum to at most 1.
    - `tagId` string, uuid, required — Unique identifier of the tag (value) within the tag group
    - `tagGroupId` string, uuid — Unique identifier of the tag group this tag belongs to
    - `tagName` string — Display name of the tag
    - `tagGroupName` string — Display name of the tag group
    - `weight` number, double, required — Allocation weight between 0 (exclusive) and 1 (inclusive). Controls how costs/revenues are split in reports. Within a tag group, weights on the same journal entry or transaction must sum to at most 1.
  - `reversingJournalEntryId` string, uuid, nullable
  - `reversedByJournalEntryId` string, uuid, nullable

## Other responses

- `404` — Journal entry not found

---

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