Company Object
Contains information about the company associated with the event or project. This includes the company’s contact information, location, and various settings.
Table of Company Object
Value Name | Description | Value Type |
---|---|---|
id | Unique identifier for the company within the system. | integer |
user_id | Identifier for the user associated with the company, if applicable. If null, no specific user is tied to the company. | integer |
company_name | The official name of the company. | string |
slug | A URL-friendly version of the company name, often used for routing or identification in web applications. | string |
company_phone | The primary phone number for the company. | string |
sms_number | The primary SMS number for the company. | string |
sms_routing_number | Description: The number used for routing SMS messages, if applicable. If empty, SMS routing may not be configured. | string |
company_address | The street address of the company. | string |
company_city | The city where the company is located. | string |
company_state | The state where the company is located, typically represented by its abbreviation. | string |
company_zip | The ZIP code of the company’s location. | string |
company_email | The primary email address for the company. | string |
lat | The latitude coordinate of the company’s location. | string |
lng | The longitude coordinate of the company’s location. | string |
timezone | The timezone in which the company operates, typically in the format "Continent/City". | string |
company_url | The URL for the company’s website. If empty, no website is provided. | string |
company_logo | The URL to the company’s logo image. | string |
created_at | Timestamp for when the company was created in the system. | string |
updated_at | Timestamp for when the company’s information was last updated. | string |
v2_org_id | Identifier for the organization in a version 2 (v2) system, if applicable. If null, no v2 organization is associated. | string |
toll_free_number | The toll-free number associated with the company. | string |
toll_free_sid | The SID (unique identifier) for the toll-free number, typically used in telecommunication platforms like Twilio. | string |
old_sms_number | The previous SMS number associated with the company, if applicable. | string |
teamData | Contains additional settings and configurations specific to the company’s team, including CRM integration, survey types, and notification settings. | object |
Example of Company Object
"company": {
"id": 0000,
"user_id": null,
"company_name": "Enerflo Solar",
"slug": "enerflosolar",
"company_phone": "1111111111",
"sms_number": "1111111111",
"sms_routing_number": "",
"company_address": "1234 Main St.",
"company_city": "Huntington Beach",
"company_state": "CA",
"company_zip": "92605",
"company_email": "[email protected]",
"lat": "33.660057",
"lng": "-117.998970",
"timezone": "America/Los_Angeles",
"company_url": "",
"company_logo": "https://assets.enerflo.io/assets/clients/companylogo.png"
"created_at": "2023-01-13 19:54:04",
"updated_at": "2024-08-02 16:46:38",
"v2_org_id": null,
"toll_free_number": "1111111111
"toll_free_sid": "ABC123456798
"old_sms_number": "000000000
"teamData": {
"crmId": null,
"ppwChanges": "1",
"requestDelay": null,
"epc_financing": "1",
"enerfloDesigns": "0",
"revisionFields": null,
"sendSmsMessage": false,
"accessProposals": null,
"designProposals": null,
"state_overrides": null,
"survey_type_ids": [
"0000
"0001
"0002
"0003
],
"ccEnerfloRequest": null,
"chatNotifications": null,
"disable_call_pilot": null,
"sendChatBotMessage": false,
"showSolarDesignUser": "0",
"disable_adder_pricing": null,
"disableEpcUserCloaking": null,
"adminCanEditProjectGroups": null,
"proposalRequestSectionIds": null,
"sales_org_project_settings": null,
"disable_milestone_notification": null,
"allow_sales_to_approve_contracts": null,
"enable_epc_branding_milestone_emails": "1"
}
}
Updated 3 months ago