Get a customer
AuthorizationBearer <token>
The organization API key, sent as Authorization: Bearer <key>.
In: header
Path Parameters
customerId*string
Response Body
application/json
application/json
application/json
application/json
application/json
application/json
curl -X GET "https://example.com/v1/customers/string"{ "city": "string", "contacts": [ { "displayName": "string", "id": "string", "identifierType": "whatsapp", "identifierValue": "string", "phoneNumber": "string" } ], "country": "string", "createdAt": "2019-08-24T14:15:22Z", "displayName": "string", "firstName": "string", "id": "string", "lastName": "string", "preferredLanguage": "string", "summary": "string", "tags": [ "string" ], "updatedAt": "2019-08-24T14:15:22Z"}Create a customer POST
Fails if any of the contacts already belongs to another customer in the organization: one person is ONE record, and duplicating it splits their history in two.
Update a customer PATCH
Only touches the fields present in the body. `contacts`, when present, REPLACES the whole list; when absent, the existing list is preserved.