> ## 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.

# POST /invoices



## OpenAPI

````yaml /openapi/nimbo_api.yml post /invoices
openapi: 3.0.0
info:
  title: Nimbo API
  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:
  /invoices:
    post:
      tags:
        - Charges
      summary: POST /invoices
      operationId: legacy_nimbo_api_post__invoices
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                invoice:
                  type: object
                  properties:
                    encounter_id:
                      type: string
                    tax_attributes:
                      type: object
                      properties:
                        use_cfdi:
                          type: string
                        payment_method:
                          type: string
                        payment_form:
                          type: string
                    consultation_id:
                      nullable: true
                    person_id:
                      type: string
      responses:
        '200':
          description: Successful response
      security:
        - BearerAuth: []
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````