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

# Delete a List

> Delete a contact list

Permanently deletes a contact list and all its contacts from both the source and the dialing queue.

**Warning:** This action is irreversible — all contacts and data in the list will be lost.

### Path Parameters

* **id** (*required*, string): The contact list ID returned from [Create a List](/api-reference/endpoint/create-list) or [Get All Contact Lists](/api-reference/endpoint/get-contact-lists).

### Response (200)

```json theme={null}
{
  "success": true
}
```

### Errors

| Status | Description            |
| ------ | ---------------------- |
| 404    | Contact list not found |


## OpenAPI

````yaml DELETE /v1/contact-lists/csv/{id}
openapi: 3.0.1
info:
  title: Salesfinity API
  description: API documentation for Salesfinity platform
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://client-api.salesfinity.co
security:
  - ApiKeyAuth: []
paths:
  /v1/contact-lists/csv/{id}:
    delete:
      tags:
        - Contact Lists
      description: Delete a contact list
      operationId: delete-contact-list
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Contact list deleted successfully
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````