Skip to content

List Time Blockers

GET
/businesses/{businessId}/time-blockers

List Time Blockers within a Business

startDate
string format: date-time

Start of date range filter

endDate
string format: date-time

End of date range filter (requires startDate)

staffId
string format: uuid

ID of the staff to filter time blockers by

List of time blockers

Media type application/json
object
data
Array<object>
object
id

Unique identifier across the platform.

string format: uuid
createdAt

Time when the resource was created (ISO 8601 format).

string format: date-time
updatedAt

Time when the resource was last updated (ISO 8601 format).

string format: date-time
staffId

The ID of the Staff this resource belongs to.

string format: uuid
startDate

Start date and time of the time blocker (ISO 8601 format).

string format: date-time
endDate

End date and time of the time blocker (ISO 8601 format).

string format: date-time
reason

Reason for the time blocker.

string
nullable
Example generated
{
"data": [
{
"staffId": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0",
"startDate": "2026-04-15T12:00:00Z",
"endDate": "2026-04-15T12:00:00Z",
"reason": "example"
}
]
}