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



## OpenAPI

````yaml POST /psp-disputes
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-disputes:
    post:
      summary: List Stripe Disputes
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DisputesRequest'
      responses:
        '200':
          description: Stripe disputes response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DisputesResponse'
      security:
        - bearerAuth: []
components:
  schemas:
    DisputesRequest:
      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
    DisputesResponse:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/Dispute'
        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
    Dispute:
      type: object
      additionalProperties: true
      properties:
        id:
          type: string
        object:
          type: string
          enum:
            - dispute
        amount:
          type: integer
          description: Disputed amount in cents
        balance_transactions:
          type: array
          items:
            type: object
            additionalProperties: true
        charge:
          type: string
          nullable: true
        created:
          type: integer
          description: >-
            The timestamp of the dispute creation in seconds since the Unix
            epoch
        currency:
          type: string
        evidence:
          type: object
          additionalProperties: true
        evidence_details:
          type: object
          properties:
            due_by:
              type: integer
              nullable: true
            has_evidence:
              type: boolean
            past_due:
              type: boolean
            submission_count:
              type: integer
        is_charge_refundable:
          type: boolean
        livemode:
          type: boolean
        metadata:
          type: object
          additionalProperties:
            type: string
        network_reason_code:
          type: string
          nullable: true
        payment_intent:
          type: string
          nullable: true
        payment_method_details:
          type: object
          properties:
            card:
              type: object
              properties:
                brand:
                  type: string
                network_reason_code:
                  type: string
                  nullable: true
            type:
              type: string
        reason:
          type: string
          enum:
            - bank_cannot_process
            - check_returned
            - credit_not_processed
            - customer_initiated
            - debit_not_authorized
            - duplicate
            - fraudulent
            - general
            - incorrect_account_details
            - insufficient_funds
            - product_not_received
            - product_unacceptable
            - subscription_canceled
            - unrecognized
        status:
          type: string
          enum:
            - charge_refunded
            - lost
            - needs_response
            - under_review
            - warning_closed
            - warning_needs_response
            - warning_under_review
            - won
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````