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 NameDescriptionValue Type
idUnique identifier for the company within the system.integer
user_idIdentifier for the user associated with the company, if applicable. If null, no specific user is tied to the company.integer
company_nameThe official name of the company.string
slugA URL-friendly version of the company name, often used for routing or identification in web applications.string
company_phoneThe primary phone number for the company.string
sms_numberThe primary SMS number for the company.string
sms_routing_numberDescription: The number used for routing SMS messages, if applicable. If empty, SMS routing may not be configured.string
company_addressThe street address of the company.string
company_cityThe city where the company is located.string
company_stateThe state where the company is located, typically represented by its abbreviation.string
company_zipThe ZIP code of the company’s location.string
company_emailThe primary email address for the company.string
latThe latitude coordinate of the company’s location.string
lngThe longitude coordinate of the company’s location.string
timezoneThe timezone in which the company operates, typically in the format "Continent/City".string
company_urlThe URL for the company’s website. If empty, no website is provided.string
company_logoThe URL to the company’s logo image.string
created_atTimestamp for when the company was created in the system.string
updated_atTimestamp for when the company’s information was last updated.string
v2_org_idIdentifier for the organization in a version 2 (v2) system, if applicable. If null, no v2 organization is associated.string
toll_free_numberThe toll-free number associated with the company.string
toll_free_sidThe SID (unique identifier) for the toll-free number, typically used in telecommunication platforms like Twilio.string
old_sms_numberThe previous SMS number associated with the company, if applicable.string
teamDataContains 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"
			}
		}