> ## Documentation Index
> Fetch the complete documentation index at: https://docs.range.org/llms.txt
> Use this file to discover all available pages before exploring further.

# Get one Open item by Range id

> Returns an Open item whether open or closed. 404 if missing or not on this workspace / Ledger connection.



## OpenAPI

````yaml /api-reference/platform-api.json get /v2/account-connections/bookkeeping/{connectionId}/open-items/{id}
openapi: 3.0.0
info:
  title: Range Platform API
  description: >-
    The Range Platform API for workspace management, counterparties, and
    operational tooling.
  version: 1.7.21
  contact: {}
servers:
  - url: https://api.range.org
    description: Range API Server
security:
  - Authorization: []
  - Authorization: []
tags:
  - name: Address Information
    description: Get information about a crypto address.
  - name: Transfer Enrichments
    description: Attach workspace-scoped notes and categories to transfers.
  - name: Counterparties
    description: Manage external entities, their addresses, bank accounts, and documents.
paths:
  /v2/account-connections/bookkeeping/{connectionId}/open-items/{id}:
    get:
      tags:
        - Account Connections
      summary: Get one Open item by Range id
      description: >-
        Returns an Open item whether open or closed. 404 if missing or not on
        this workspace / Ledger connection.
      operationId: getOpenItem
      parameters:
        - name: connectionId
          required: true
          in: path
          schema:
            type: string
        - name: id
          required: true
          in: path
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OpenItemDto'
components:
  schemas:
    OpenItemDto:
      type: object
      properties:
        id:
          type: string
          description: Range identity minted on first persist. Used for GET by id.
          format: uuid
        kind:
          type: string
          enum:
            - invoice
            - bill
        status:
          type: string
          enum:
            - open
            - closed
        external_id:
          type: string
          description: Provider document id (QuickBooks Invoice/Bill Id, …).
        contact_external_id:
          type: string
          description: >-
            Ledger contact id (provider customer/vendor id). Join to the
            bookkeeping counterparties preview `external_id` — not a Range
            counterparty FK.
        contact_name:
          type: string
          nullable: true
        txn_date:
          type: string
          description: Document date (YYYY-MM-DD).
        due_date:
          type: string
          nullable: true
          description: Due date (YYYY-MM-DD). Overdue is still open.
        currency_code:
          type: string
          description: ISO 4217 document currency, not the books home currency.
        remaining_balance:
          type: string
          description: Remaining open amount in document currency.
        original_total:
          type: string
          description: Original document total in document currency.
        memo:
          type: string
          nullable: true
        doc_number:
          type: string
          nullable: true
      required:
        - id
        - kind
        - status
        - external_id
        - contact_external_id
        - txn_date
        - currency_code
        - remaining_balance
        - original_total
  securitySchemes:
    Authorization:
      type: apiKey
      in: header
      name: X-API-KEY
      description: Authorization method required to allow user to access the api endpoints.

````