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

# Add the List to Dialing Queue

> Reimport contacts from CSV

Reimports contacts from the source list back into the dialing queue. This replaces the current queue contents with the full source list.

Use this to reset a partially-dialed list back to its original state, or to push source changes into the active queue.

### Path Parameters

* **id** (*required*, string): Contact list ID.

### Response (201)

Returns the updated contact list.

### Errors

| Status | Description                |
| ------ | -------------------------- |
| 404    | CSV contact list not found |


## OpenAPI

````yaml POST /v1/contact-lists/csv/{id}/reimport
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}/reimport:
    post:
      tags:
        - Contact Lists
      description: Reimport contacts from CSV
      operationId: reimport-contacts
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
      responses:
        '201':
          description: Contacts reimported successfully
          content:
            application/json:
              schema:
                type: object
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````