Skip to main content

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}

Input request

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

Input parameters

Field nameDescription
customersCustomers block
posLocationIdPos Location Id
firstNameCustomer first name
lastNameCustomer last name
phoneCustomer phone
callbackPublicly accessible webhook URL invoked after import completion with the import result payload

Response

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