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



## OpenAPI

````yaml POST /psp-payments
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:
  /psp-payments:
    post:
      summary: List Stripe Payment Intents
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PaymentsRequest'
      responses:
        '200':
          description: Stripe payment intents response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaymentsResponse'
      security:
        - bearerAuth: []
components:
  schemas:
    PaymentsRequest:
      allOf:
        - $ref: '#/components/schemas/PaginationRequest'
        - type: object
          required:
            - clinic
          properties:
            clinic:
              type: string
            starting_after:
              type: string
            created_since:
              type: integer
              format: int64
              description: Unix timestamp
    PaymentsResponse:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/PaymentIntent'
        has_more:
          type: boolean
    PaginationRequest:
      type: object
      required:
        - organization
        - limit
        - offset
      properties:
        organization:
          type: string
        limit:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
    PaymentIntent:
      type: object
      additionalProperties: true
      properties:
        id:
          type: string
        object:
          type: string
          enum:
            - payment_intent
        amount:
          type: integer
        amount_capturable:
          type: integer
        amount_details:
          type: object
          properties:
            tip:
              type: object
        amount_received:
          type: integer
        application:
          type: string
        application_fee_amount:
          type: integer
          nullable: true
        automatic_payment_methods:
          type: object
          properties:
            enabled:
              type: boolean
        canceled_at:
          type: integer
          nullable: true
        cancellation_reason:
          type: string
          nullable: true
        capture_method:
          type: string
        client_secret:
          type: string
        confirmation_method:
          type: string
        created:
          type: integer
          description: >-
            The timestamp of the payment intent creation in seconds since the
            Unix epoch
        currency:
          type: string
        customer:
          type: string
          nullable: true
        description:
          type: string
          nullable: true
        invoice:
          type: string
          nullable: true
        latest_charge:
          type: string
          nullable: true
        livemode:
          type: boolean
        metadata:
          type: object
          additionalProperties:
            type: string
        payment_method:
          type: string
          nullable: true
        payment_method_options:
          type: object
          properties:
            card:
              type: object
              properties:
                installments:
                  nullable: true
                mandate_options:
                  nullable: true
                network:
                  nullable: true
                request_three_d_secure:
                  type: string
        payment_method_types:
          type: array
          items:
            type: string
        processing:
          nullable: true
        setup_future_usage:
          type: string
          nullable: true
        shipping:
          nullable: true
        status:
          type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````