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

# Remove a Contact from a List

> Remove a contact from a contact list

Removes a contact from an existing contact list. The contact is removed from both the source list and the dialing queue.

### Path Parameters

* **id** (*required*, string): Contact list ID.
* **contactId** (*required*, string): ID of the contact to remove.

### Response (200)

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

### Errors

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


## OpenAPI

````yaml DELETE /v1/contact-lists/{id}/contacts/{contactId}
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/{id}/contacts/{contactId}:
    delete:
      tags:
        - Contact Lists
      description: Remove a contact from a contact list
      operationId: remove-contact
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
          description: The ID of the contact list.
        - name: contactId
          in: path
          required: true
          schema:
            type: string
          description: The ID of the contact to remove.
      responses:
        '200':
          description: Contact removed successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                example:
                  message: Contact removed successfully
        '404':
          description: Contact or list not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - ApiKeyAuth: []
components:
  schemas:
    Error:
      type: object
      required:
        - error
        - message
      properties:
        error:
          type: integer
          format: int32
        message:
          type: string
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````