Skip to main content
POST
/
customers
Create a customer
curl --request POST \
  --url https://{your-workspace}.neetodesk.com/api/v1/public/customers \
  --header 'Content-Type: application/json' \
  --header 'X-Api-Key: <x-api-key>' \
  --data '
{
  "customer": {
    "emails": [
      "[email protected]",
      "[email protected]"
    ],
    "first_name": "John",
    "last_name": "Doe",
    "phones": [
      "+1234567890"
    ],
    "links": [
      "https://github.com/john"
    ],
    "language": "English",
    "time_zone": "Eastern Time (US & Canada)",
    "description": "VIP customer",
    "company_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  }
}
'
{
  "notice_code": "<string>"
}
Replace {your-workspace} with your workspace’s subdomain.
Learn how to find your subdomain in Identifying your subdomain.

Headers

X-Api-Key
string
default:your-api-key
required

X-Api-Key is used to authenticate requests using an API key. Provide your API key in this header to access protected endpoints. Refer to Authentication for more information.

Body

application/json
customer
object
required

Response

OK - Request succeeded

notice_code
string