Get a customer

GET
/v1/customers/{customerId}

Authorization

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"}