> ## Documentation Index
> Fetch the complete documentation index at: https://dev.nimbo-x.com/llms.txt
> Use this file to discover all available pages before exploring further.

# GET /invoices/{invoice_id}/consultation_invoice_items



## OpenAPI

````yaml /openapi/nimbo_erp.yml get /invoices/{invoice_id}/consultation_invoice_items
openapi: 3.0.0
info:
  title: Nimbo ERP
  version: 1.0.0
  description: >-
    Nimbo API reference. Use the API host and integration access provided by
    Nimbo.
servers:
  - url: https://api.example.test
    description: Reference only; confirm your integration host with Nimbo
security:
  - BearerAuth: []
paths:
  /invoices/{invoice_id}/consultation_invoice_items:
    get:
      summary: GET /invoices/{invoice_id}/consultation_invoice_items
      operationId: legacy_nimbo_erp_get__invoices_invoice_id_consultation_invoice_items
      parameters:
        - name: invoice_id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                type: object
                properties:
                  consultation_invoice_items:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: integer
                        quantity:
                          type: integer
                        amount:
                          type: integer
                        value:
                          type: integer
                        account_id:
                          type: integer
                        invoice_item_id:
                          type: integer
                        invoice_id:
                          type: integer
                        invoice_item_sku:
                          nullable: true
                        accounting_type:
                          type: string
                        created_at:
                          type: string
                          format: date-time
                        tax_attributes:
                          type: object
                        kop_key:
                          nullable: true
                        kop_description:
                          nullable: true
                        uom_key:
                          nullable: true
                        uom_description:
                          nullable: true
          description: Successful response
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````