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



## OpenAPI

````yaml POST /cancellation-payment-intents
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:
  /cancellation-payment-intents:
    post:
      summary: List Cancellation Payment Intents
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CancellationPaymentIntentsRequest'
      responses:
        '200':
          description: A list of cancellation payment intents
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CancellationPaymentIntent'
      deprecated: true
      security:
        - bearerAuth: []
components:
  schemas:
    CancellationPaymentIntentsRequest:
      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
            created_before:
              type: string
              format: date-time
            updated_before:
              type: string
              format: date-time
    CancellationPaymentIntent:
      type: object
      properties:
        id:
          type: string
        clinic_name:
          type: string
        clinic_id:
          type: string
        date:
          type: string
          format: date-time
        discounted:
          type: boolean
        discounted_amount:
          type: number
          format: double
        new_price:
          type: number
          format: double
        percent_discount:
          type: number
          format: double
        pet:
          type: string
        subscription:
          type: string
        wellnes_plan_name:
          type: string
          description: >-
            Wellness plan name. Note: field is spelled with a single 's'
            (wellnes_plan_name) in the API response.
        payments:
          type: number
          format: double
        payment_amount:
          type: number
          format: double
        payment_or_refund:
          type: string
          example: Payment to cancel
        paymentIntent_or_refund_id:
          type: string
          nullable: true
        total_benefits_consumed_at_retail_price:
          type: number
          format: double
          nullable: true
        total_benefits_consumed_at_discounted_price:
          type: number
          format: double
          nullable: true
        reason:
          type: string
        early_cancellation_fee:
          type: number
          format: double
        refund_ids:
          type: array
          items:
            type: string
        isSucceeded:
          type: boolean
        IsTest:
          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

````