> ## 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 /encounters/{encounter_id}/invoice



## OpenAPI

````yaml /openapi/nimbo_erp.yml get /encounters/{encounter_id}/invoice
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:
  /encounters/{encounter_id}/invoice:
    get:
      summary: GET /encounters/{encounter_id}/invoice
      operationId: legacy_nimbo_erp_get__encounters_encounter_id_invoice
      parameters:
        - name: encounter_id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                type: object
                properties:
                  invoice:
                    type: object
                    properties:
                      id:
                        type: integer
                      payment_type:
                        nullable: true
                      encounter_id:
                        type: integer
                      person_id:
                        type: integer
                      discount_rate:
                        nullable: true
                      discount_amount:
                        nullable: true
                      tax_rate:
                        nullable: true
                      tax_amount:
                        nullable: true
                      total_cents:
                        type: integer
                      total_discount_cents:
                        type: integer
                      total_tax_cents:
                        type: integer
                      links:
                        type: object
                        properties:
                          consultation:
                            type: string
                          consultation_invoice_items:
                            type: string
                          consultation_schedule:
                            type: string
                          encounter:
                            type: string
                      tax_attributes:
                        type: object
                      signed_at:
                        nullable: true
                      globally_invoiced:
                        type: boolean
                      cause:
                        type: string
                      starts_at:
                        type: string
                        format: date-time
          description: Successful response
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````