Use this endpoint when you only need to change opening hours (regular weekly hours, special dates, or additional hour types). It updates the same Google location resource as Location & profile, but requires an explicitDocumentation Index
Fetch the complete documentation index at: https://info.bundle.social/llms.txt
Use this file to discover all available pages before exploring further.
fields array so the API knows which hour sections are part of your update payload.
Endpoint: PATCH /api/v1/misc/google-business/location/hours
Base path: /api/v1/misc/google-business
Body rules
| Field | Required | Description |
|---|---|---|
teamId | Yes | Team with a connected Google Business location. |
fields | Yes | Which hour sections this update payload applies to. Each value must be one of: regularHours, specialHours, moreHours. You can pass one or more (comma-separated or repeated style, same as other query lists in this API). |
regularHours | Optional | Weekly schedule. Omit if not in fields. |
specialHours | Optional | Date-specific overrides. Omit if not in fields. |
moreHours | Optional | Array of extra hour groups (for example pickup). Omit if not in fields. |
validateOnly | Optional | If true, validation only, no persist. |
fields. The server forwards the update payload to Google.
Time and day shapes
Weekdays foropenDay / closeDay in periods:
MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, SUNDAY
Time can be sent as:
- A string like
"09:00"or"09:00:00"(normalized to Google’s time-of-day object where supported), or - An object:
hours,minutes, optionalseconds, optionalnanos.
startDate / endDate with year, month, day, plus openTime, closeTime, and closed: true when the location is closed all day.
Example: full hours update payload (anonymized)
teamId is a placeholder. Structure matches a real multi-section hours update payload: regular week, holiday exceptions, and moreHours with a type id (use values Google returns for your location for hoursTypeId).
Related
- Location & profile if you also change non-hour fields in one call.