Contact Details

A contact_detail object represents a specific point of contact for an account. Similar to routing and account details, we can encapsulate different contact points like emails or phone numbers and assign them to a single account.

AttributeDescription
id
string
The ID of the contact detail.
contact_identifier
string
The contact information.
contact_identifier_type
string
The type or communication channel of the identifier. Must be one of email or phone_number.
live_mode
boolean
This field will be true if this object was created with a production API key or false if created with a test API key.
{
  "id": "1234da60-405c-44bc-8b33-2bdb9419afe3",
  "object": "contact_detail",
  "contact_identifier": "[email protected]",
  "contact_identifier_type": "email",
  "live_mode": true,
  "created_at": "2019-11-09T00:11:07Z",
  "updated_at": "2019-11-09T00:11:07Z"
}