Office Object

An object containing information about the office associated with the customer or company.

Table of Office Object

Value NameDescriptionValue Type
idThe unique identifier for the office.integer
company_idThe unique identifier for the company associated with the office.integer
office_nameThe name of the office.string
phone_numberThe contact phone number for the office.string
sms_numberThe SMS number associated with the office. Empty if not provided.string
office_addressThe street address of the office.string
office_cityThe city where the office is located.string
office_stateThe state where the office is located.string
office_zipThe postal code for the office's location.string
latThe latitude coordinate of the office's location.string
lngThe longitude coordinate of the office's location.string
timezoneThe time zone of the office.string
meta_dataMetadata associated with the office.string
created_atThe timestamp when the office was created.string
updated_atThe timestamp when the office was last updated.string
crm_idThe CRM identifier. null if not available.string
office_logoThe URL or identifier for the office logo. null if notstring
deleted_atThe timestamp when the office was deleted. null if not applicable.string

Below is an Example of Office Object

"office": {
			"id": 0000,
			"company_id": 0000,
			"office_name": "Enerflo Solar Office",
			"phone_number": "0000000000",
			"sms_number": "",
			"office_address": "123 Main St",
			"office_city": "Huntington Beach",
			"office_state": "CA",
			"office_zip": "92605",
			"lat": "33.660057",
			"lng": "-117.998970",
			"timezone": "America/Los_Angeles",
			"meta_data": {
				"crmId": null,
				"optimus_enabled": null,
				"disabled_deal_type": [],
				"restrict_deal_type": null,
				"default_lead_source": null,
				"disable_user_creation": null
			},
			"created_at": "2023-01-13 19:54:04",
			"updated_at": "2024-07-01 16:17:25",
			"crm_id": null,
			"office_logo": null,
			"deleted_at": null
		},