Add channel to contact
Add a new communication channel to an existing contact.
post/v1/contacts/{contactId}/channels
Path parameters
contactIdstring required
Request body
Example request
{
"identifier": "+14155551234",
"countryCode": "US",
"label": "work"
}Response
Channel added.
Example response
{
"channel": {
"identifier": "+14155551234",
"countryCode": "US",
"label": "work"
}
}