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

# Customers Import To CMC

# Customers Import

Imports one or more customers into the system from an external POS System.

**POST** [https://apitest.clearline.me/v2/pos/\{posSystemId}/import/customers/company/\{posCompanyId}](https://apitest.clearline.me/v2/pos/\{posSystemId}/import/customers/company/\{posCompanyId})

### Input request

```
{
  "customers": [
    {
      "firstName": "string",
      "lastName": "string",
      "email": "string",
      "phone": "string"
    }
  ],
  "callback": "string"
}
```

### Input parameters

| Field name | Description                                                                                    |
| :--------- | :--------------------------------------------------------------------------------------------- |
| customers  | Customers block                                                                                |
| firstName  | Customer first name                                                                            |
| lastName   | Customer last name                                                                             |
| phone      | Customer phone                                                                                 |
| callback   | Publicly accessible webhook URL invoked after import completion with the import result payload |

### Response

```
{
  "data": {
    "importId": "string"
  }
}
```
