Field | Type | Required | Description | Example |
---|---|---|---|---|
name |
Nullable[str] | ✔️ | The name of the company | Acme |
industry |
OptionalNullable[str] | ➖ | The industry of the company. Authorized values can be found in the Industry enum. | ACCOUNTING |
number_of_employees |
OptionalNullable[float] | ➖ | The number of employees of the company | 10 |
user_id |
OptionalNullable[str] | ➖ | The UUID of the user who owns the company | 801f9ede-c698-4e66-a7fc-48d19eebaa4f |
email_addresses |
List[models.Email] | ➖ | The email addresses of the company | [ { "email_address": "[email protected]", "email_address_type": "WORK" } ] |
addresses |
List[models.Address] | ➖ | The addresses of the company | [ { "street_1": "5th Avenue", "city": "New York", "state": "NY", "country": "USA", "address_type": "WORK" } ] |
phone_numbers |
List[models.Phone] | ➖ | The phone numbers of the company | [ { "phone_number": "+33660606067", "phone_type": "WORK" } ] |
field_mappings |
Dict[str, Any] | ➖ | The custom field mappings of the company between the remote 3rd party & Panora | { "fav_dish": "broccoli", "fav_color": "red" } |