> ## Documentation Index
> Fetch the complete documentation index at: https://docs.closerx.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete Card

> Deletes a saved payment card from the user's account using the card ID.



## OpenAPI

````yaml DELETE /delete-card/{id}
openapi: 3.1.0
info:
  title: CloserX.ai API
  description: >-
    The CloserX.ai API provides programmatic access to manage AI-powered calling
    operations, including agent creation, campaign management, contact handling,
    telephony integration, and more. This API enables seamless automation and
    integration with CRM systems, telephony providers, and other third-party
    services for enhanced client communication and business operations.
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://app.closerx.ai/api
security:
  - api_key: []
paths:
  /delete-card/{id}:
    delete:
      summary: Delete Card
      description: Deletes a saved payment card from the user's account using the card ID.
      parameters:
        - name: id
          in: path
          required: true
          description: The unique ID of the card to be deleted.
          schema:
            type: string
            example: card_abc123
      responses:
        '200':
          description: Card successfully deleted
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeleteCardResponse'
        '400':
          description: Invalid card ID or card not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    DeleteCardResponse:
      type: object
      properties:
        status:
          type: string
          example: success
          description: Indicates that the card was deleted successfully.
        deleted_card_id:
          type: string
          example: card_22923
          description: The ID of the card that was deleted.
    Error:
      required:
        - success
        - message
        - data
      type: object
      properties:
        success:
          type: boolean
        message:
          type: string
        data:
          type: object
  securitySchemes:
    api_key:
      type: apiKey
      in: header
      name: api_key

````