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

# Import LeadConnect

> Initiates the CRM import task and returns a task ID and status message.



## OpenAPI

````yaml GET /v2/importcrm/
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:
  /v2/importcrm/:
    get:
      summary: Start CRM Import
      description: Initiates the CRM import task and returns a task ID and status message.
      parameters:
        - name: Company-Name
          in: header
          required: true
          description: Schema name for multi-tenancy
          schema:
            type: string
      responses:
        '200':
          description: CRM import task initiated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ImportCRMResponse'
        '400':
          description: Invalid request or missing parameters
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    ImportCRMResponse:
      type: object
      properties:
        task_id:
          type: string
          description: Unique task ID of the CRM import process
          example: bac14e1c-b9ee-48a8-bbb1-311682f7ab93
        status:
          type: string
          description: Status message of the import task
          example: Import task has been started.
    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

````