Create contact
Create a new contact with one or more communication channels.
post/v1/contacts
Request body
Example request
{
"displayName": "John Doe",
"channels": [
{
"identifier": "+14155551234",
"countryCode": "US",
"label": "work"
}
]
}Response
Contact created.
Example response
{
"displayName": "John Doe",
"phoneNumber": "+56912345678",
"primaryPhone": "+56912345678",
"primaryEmail": "john@example.com",
"countryCode": "CL",
"profileName": "John Doe",
"channels": [
{
"identifier": "+14155551234",
"countryCode": "US",
"label": "work"
}
]
}