Managed Sync
- Overview
- Getting Started
- Synced Objects
- Webhooks
Sync API
Integrations Reference
- File Storage
- CRM
Synced Objects
CRM Contact
A contact record in a CRM system.
Pipeline name for Sync configuration: contacts
The schema is of type object
.
Copy
Ask AI
{
"id": "<string>",
"external_id": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"full_name": "<string>",
"company_name": "<string>",
"job_title": "<string>",
"emails": [
{
"type": "primary",
"email": "<string>"
}
],
"phone_numbers": [
{
"type": "primary",
"number": "<string>"
}
],
"addresses": [
{
"type": "primary",
"street1": "<string>",
"street2": "<string>",
"city": "<string>",
"state": "<string>",
"postalCode": "<string>",
"country": "<string>"
}
],
"social_profiles": [
{
"type": "linkedin",
"url": "<string>",
"username": "<string>"
}
],
"type": "lead",
"status": "active",
"owner_id": "<string>",
"created_at": 123,
"updated_at": 123,
"last_activity_at": 123,
"lifecycle_stage": "<string>",
"lead_source": "<string>",
"tags": [
"<string>"
],
"notes": "<string>",
"website": "<string>",
"custom_fields": {}
}
Assistant
Responses are generated using AI and may contain mistakes.