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



## OpenAPI

````yaml POST /charge-refunds
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:
  /charge-refunds:
    post:
      summary: List Charge Refunds
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ChargeRefundsRequest'
      responses:
        '200':
          description: A list of charge refunds
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ChargeRefund'
      security:
        - bearerAuth: []
components:
  schemas:
    ChargeRefundsRequest:
      type: object
      required:
        - organization
        - limit
        - offset
      properties:
        organization:
          type: string
        charge:
          type: string
        limit:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
        status:
          type: string
          enum:
            - Open
            - Succeeded
        created_at_since:
          type: string
          format: date-time
        updated_at_since:
          type: string
          format: date-time
    ChargeRefund:
      type: object
      properties:
        id:
          type: string
          description: This Charge Refund's unique id formatted as JSON-safe
        refund_date:
          type: string
          format: date-time
          nullable: true
          description: >-
            This Charge Refund's Charge Refund Date formatted as
            2026-01-12T15:12:55.477Z formatted as JSON-safe defaulting to null
        amount:
          type: number
          format: double
          description: This Charge Refund's Amount formatted as 1028.58 defaulting to null
        charge:
          type: string
          description: This Charge Refund's Charge's unique id formatted as JSON-safe
        created_at:
          type: string
          format: date-time
          description: >-
            This Charge Refund's Creation Date formatted as
            2026-01-12T15:12:55.480Z formatted as JSON-safe
        updated_at:
          type: string
          format: date-time
          description: >-
            This Charge Refund's Modified Date formatted as
            2026-01-12T15:12:55.481Z formatted as JSON-safe
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````