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

# Delete Contact List

> Deletes a contact list and all associated contacts by list ID.



## OpenAPI

````yaml delete /calling/contact/{list_id}
openapi: 3.0.0
info:
  title: Revenueable AI API Documentation
  description: >-
    This is the documentation for the Revenueable AI APIs. The Revenueable AI
    API follows RESTful principles, making it intuitive and easy to integrate
    with your applications. All API requests should be made to the base URL. The
    API accepts and returns data in JSON format. Ensure your requests include
    the appropriate Content-Type header for POST and PATCH requests.
  version: 2.0.0
servers:
  - url: https://prod-api.revenueable.ai/ca/api/v0
security: []
tags:
  - name: workspace
    description: Endpoints for managing your workspace.
  - name: agent
    description: Endpoints for managing assistants (agents).
  - name: calling
    description: Endpoints for making and managing calls.
  - name: campaign
    description: Endpoints for managing campaigns.
  - name: analytics
    description: Endpoints for accessing call analytics and performance metrics.
  - name: termination
    description: Endpoints for terminating active calls using different methods.
  - name: knowledgebase
    description: Endpoints for managing knowledge bases.
paths:
  /calling/contact/{list_id}:
    delete:
      tags:
        - calling
      summary: Delete Contact List
      description: Deletes a contact list and all associated contacts by list ID.
      operationId: deleteContactList
      parameters:
        - name: X-API-KEY
          in: header
          description: (Required) Your Revenueable AI API key.
          required: true
          schema:
            type: string
            example: 7251cb4b-3373-43a4-844c-b27a1d45e0c9
        - name: list_id
          in: path
          description: (Required) The unique identifier of the contact list to delete.
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Contact list deleted successfully.
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: Bulk list deleted successfully!
        '401':
          description: Unauthorized - Invalid or missing API key.
        '404':
          description: Not Found - Contact list not found.
        '500':
          description: Internal Server Error - Something went wrong on our end.

````