Office Object
An object containing information about the office associated with the customer or company.
Table of Office Object
Value Name | Description | Value Type |
---|---|---|
id | The unique identifier for the office. | integer |
company_id | The unique identifier for the company associated with the office. | integer |
office_name | The name of the office. | string |
phone_number | The contact phone number for the office. | string |
sms_number | The SMS number associated with the office. Empty if not provided. | string |
office_address | The street address of the office. | string |
office_city | The city where the office is located. | string |
office_state | The state where the office is located. | string |
office_zip | The postal code for the office's location. | string |
lat | The latitude coordinate of the office's location. | string |
lng | The longitude coordinate of the office's location. | string |
timezone | The time zone of the office. | string |
meta_data | Metadata associated with the office. | string |
created_at | The timestamp when the office was created. | string |
updated_at | The timestamp when the office was last updated. | string |
crm_id | The CRM identifier. null if not available. | string |
office_logo | The URL or identifier for the office logo. null if not | string |
deleted_at | The 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
},
Updated 3 months ago