A Contact represents a customer’s contact information, which can be an email address or phone number. Contacts are used for communication and verification purposes throughout the platform.
| Field | Description | Type |
|---|
| id | Unique identifier (UUID) | String |
| contact_type | Type of contact. Can be email or phone | String |
| purpose | Purpose or context for this contact (e.g., primary, support, billing) | String |
| address | The contact value - email address or phone number | String |
| validated | Whether the customer has validated this contact through verification | Boolean |
| created_at | Indicates when the record was created in ISO8601 format | String |
| updated_at | Indicates when the record was last updated in ISO8601 format | String |
| Value | Description |
|---|
| email | Contact is an email address |
| phone | Contact is a phone number |
Table of contents