Query
query BusinessHoursSlots {
businessHoursSlots {
timezone {
name
}
weekday
opensAt
closesAt
}
}Response
{
"data": {
"businessHoursSlots": [
{
"timezone": {
"name": "string"
},
"weekday": "MONDAY",
"opensAt": "string",
"closesAt": "string"
}
]
}
}Queries
businessHoursSlots
Return all active business hours slots for the workspace. Each slot specifies a weekday, timezone, and open/close times. Returns an empty list if no business hours are configured. Requires the businessHours:read permission.
QUERY
businessHoursSlots: [BusinessHoursSlot!]!Returns
timezone
The IANA timezone in which opensAt and closesAt are interpreted (e.g. 'Europe/London').
weekday
The day of the week this slot applies to.
opensAt
String!
The time this slot opens, in HH:MM format (e.g. '09:00').
closesAt
String!
The time this slot closes, in HH:MM format (e.g. '17:00').
Query
query BusinessHoursSlots {
businessHoursSlots {
timezone {
name
}
weekday
opensAt
closesAt
}
}Response
{
"data": {
"businessHoursSlots": [
{
"timezone": {
"name": "string"
},
"weekday": "MONDAY",
"opensAt": "string",
"closesAt": "string"
}
]
}
}Was this page helpful?

