> ## 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 Nest Payment Intents



## OpenAPI

````yaml POST /payment-intents
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:
  /payment-intents:
    post:
      summary: List Nest Payment Intents
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PaymentIntentsRequest'
      responses:
        '200':
          description: A list of payment intents
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PaymentIntentRecord'
      security:
        - bearerAuth: []
components:
  schemas:
    PaymentIntentsRequest:
      allOf:
        - $ref: '#/components/schemas/PaginationRequest'
        - type: object
          properties:
            id:
              type: string
            subscription_id:
              type: string
            pet_id:
              type: string
            created_at_since:
              type: string
              format: date-time
            updated_at_since:
              type: string
              format: date-time
    PaymentIntentRecord:
      type: object
      properties:
        id:
          type: string
        clinic:
          type: string
        clinic_id:
          type: string
        pet:
          type: string
        subscription:
          type: string
        payment_amount:
          type: number
          format: double
        scheduled_date:
          type: string
        captured_date:
          type: string
          nullable: true
        paid:
          type: boolean
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
    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

````