Locations
Your account/location record holds your SMBcrm account’s name, address, contact details, and timezone. These endpoints read that record, and list the timezone identifiers available for it.
Base URL: https://services.smbcrm.com · Version header: v3 ·
Scopes: locations.readonly. See Scopes.
Get your location
Section titled “Get your location”curl https://services.smbcrm.com/locations/<location_id> \ -H "Authorization: Bearer <token>" \ -H "Version: v3"{ "location": { "id": "<location_id>", "name": "Riverside Plumbing Co.", "phone": "+15125550100", "address": "412 Main St", "city": "Austin", "state": "TX", "country": "US", "postalCode": "78701", "website": "https://example.com", "timezone": "America/Chicago" }}List available timezones
Section titled “List available timezones”Use this to look up the valid timezone identifiers for the timezone field shown above.
curl https://services.smbcrm.com/locations/<location_id>/timezones \ -H "Authorization: Bearer <token>" \ -H "Version: v3"{ "timezones": [ "America/Chicago", "America/Denver", "America/Los_Angeles", "America/New_York", "UTC" ]}Related
Section titled “Related”- Custom Fields, Values & Tags — also scoped
under
/locations/{locationId}; define the custom fields available across your account. - Contacts — the people that belong to your location.
- Scopes — the permissions your token needs for each endpoint.
