> ## 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 /reports/consultation_invoice_items



## OpenAPI

````yaml /openapi/nimbo_facturacion.yml get /reports/consultation_invoice_items
openapi: 3.0.0
info:
  title: Nimbo billing
  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: []
paths:
  /reports/consultation_invoice_items:
    get:
      summary: GET /reports/consultation_invoice_items
      operationId: legacy_nimbo_facturacion_get__reports_consultation_invoice_items
      parameters:
        - name: start
          in: query
          schema:
            type: string
        - name: end
          in: query
          schema:
            type: string
        - name: status
          in: query
          schema:
            type: string
        - name: person
          in: query
          schema:
            type: integer
      responses:
        '200':
          content:
            application/json:
              schema:
                type: object
                properties:
                  encounters:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: integer
                        created_at:
                          type: string
                          format: date-time
                        cause:
                          type: string
                        invoice_id:
                          type: integer
                        total_discount_cents:
                          type: integer
                        total_tax_cents:
                          type: integer
                        total_cents:
                          type: integer
                        signed_at:
                          type: string
                          format: date-time
                        charges_count:
                          type: integer
                        full_name:
                          type: string
                        payment_type:
                          type: string
                        subtotal:
                          type: integer
                        payment:
                          type: integer
                        physician_name:
                          type: string
                        status:
                          type: string
                  invoice_metrics:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          nullable: true
                        total_cents:
                          type: integer
                        total_items:
                          type: integer
                        total_items_payments:
                          type: integer
                        average:
                          type: integer
                        total_payments:
                          type: string
          description: Successful response
      security:
        - BearerAuth: []
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````