Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 5.27 KB

unifiedcrmcontactinput.md

File metadata and controls

14 lines (11 loc) · 5.27 KB

UnifiedCrmContactInput

Fields

Field Type Required Description Example
FirstName string ✔️ The first name of the contact John
LastName string ✔️ The last name of the contact Doe
EmailAddresses []components.Email The email addresses of the contact [
{
"email": "[email protected]",
"type": "WORK"
}
]
PhoneNumbers []components.Phone The phone numbers of the contact [
{
"phone": "1234567890",
"type": "WORK"
}
]
Addresses []components.Address The addresses of the contact [
{
"street": "123 Main St",
"city": "Anytown",
"state": "CA",
"zip": "12345",
"country": "USA",
"type": "WORK"
}
]
UserID *string The UUID of the user who owns the contact 801f9ede-c698-4e66-a7fc-48d19eebaa4f
FieldMappings map[string]any The custom field mappings of the contact between the remote 3rd party & Panora {
"fav_dish": "broccoli",
"fav_color": "red"
}