Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 5.56 KB

unifiedcrmcompanyinput.md

File metadata and controls

15 lines (12 loc) · 5.56 KB

UnifiedCrmCompanyInput

Fields

Field Type Required Description Example
Name string ✔️ The name of the company Acme
Industry *string The industry of the company. Authorized values can be found in the Industry enum. ACCOUNTING
NumberOfEmployees *float64 The number of employees of the company 10
UserID *string The UUID of the user who owns the company 801f9ede-c698-4e66-a7fc-48d19eebaa4f
EmailAddresses []components.Email The email addresses of the company [
{
"email_address": "[email protected]",
"email_address_type": "WORK"
}
]
Addresses []components.Address The addresses of the company [
{
"street_1": "5th Avenue",
"city": "New York",
"state": "NY",
"country": "USA",
"address_type": "WORK"
}
]
PhoneNumbers []components.Phone The phone numbers of the company [
{
"phone_number": "+33660606067",
"phone_type": "WORK"
}
]
FieldMappings map[string]any The custom field mappings of the company between the remote 3rd party & Panora {
"fav_dish": "broccoli",
"fav_color": "red"
}