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



## OpenAPI

````yaml POST /psp-refunds
openapi: 3.1.0
info:
  title: NestVet API
  version: '1.9'
  description: >-
    **This API is deprecated.** It will be removed in a future release. Please
    migrate to [Nest API v3](/nest-api-v3/introduction), which covers every
    resource this API exposes plus several more, with the same
    POST-with-JSON-body request shape.


    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-refunds:
    post:
      summary: List Stripe Refunds
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RefundsRequest'
      responses:
        '200':
          description: Stripe refunds response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RefundsResponse'
      deprecated: true
      security:
        - bearerAuth: []
components:
  schemas:
    RefundsRequest:
      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
    RefundsResponse:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/Refund'
        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
    Refund:
      type: object
      additionalProperties: true
      properties:
        id:
          type: string
          example: re_3TrnJRQ0vwbqbrYk2TjLnMTq
        object:
          type: string
          enum:
            - refund
        amount:
          type: integer
          description: Refunded amount in the smallest currency unit (e.g. cents).
          example: 8433
        balance_transaction:
          type: string
          nullable: true
        charge:
          type: string
          nullable: true
        created:
          type: integer
          description: The timestamp of the refund creation in seconds since the Unix epoch
        currency:
          type: string
          example: usd
        customer:
          type: string
          nullable: true
        customer_account:
          type: string
          nullable: true
        destination_details:
          type: object
          additionalProperties: true
          properties:
            card:
              type: object
              properties:
                reference_status:
                  type: string
                reference_type:
                  type: string
                type:
                  type: string
            type:
              type: string
        metadata:
          type: object
          additionalProperties:
            type: string
        payment_intent:
          type: string
          nullable: true
        payment_method:
          type: string
          nullable: true
        reason:
          type: string
          nullable: true
        receipt_number:
          type: string
          nullable: true
        source_transfer_reversal:
          type: string
          nullable: true
        status:
          type: string
          example: succeeded
        transfer_reversal:
          type: string
          nullable: true
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````