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

# List Invoices



## OpenAPI

````yaml POST /invoices
openapi: 3.1.0
info:
  title: NestVet API
  version: '1.8'
  description: >-
    API for managing subscriptions, pet benefits, payment plans, products,
    invoices, and Stripe-integrated financial data.
servers:
  - url: https://nestvet.com/api/1.1/wf
security: []
paths:
  /invoices:
    post:
      summary: List Invoices
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/InvoicesRequest'
      responses:
        '200':
          description: A list of invoices
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Invoice'
      security:
        - bearerAuth: []
components:
  schemas:
    InvoicesRequest:
      allOf:
        - $ref: '#/components/schemas/PaginationRequest'
        - type: object
          properties:
            clinic:
              type: string
            id:
              type: string
            invoice_pims_id:
              type: string
            pet_id:
              type: string
            pet_pims_id:
              type: string
            created_at_since:
              type: string
              format: date-time
            updated_at_since:
              type: string
              format: date-time
    Invoice:
      type: object
      properties:
        id:
          type: string
        organization:
          type: string
        clinic:
          type: string
        date:
          type: string
          format: date-time
        invoice_lines:
          type: array
          items:
            type: string
        invoice_pims_id:
          type: string
        pets:
          type: array
          items:
            type: string
        status:
          type: string
        subscriptions:
          type: array
          items:
            type: string
        subtotal:
          type: number
          format: double
        tax:
          type: number
          format: double
        total:
          type: number
          format: double
    PaginationRequest:
      type: object
      required:
        - organization
        - limit
        - offset
      properties:
        organization:
          type: string
        limit:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````