PublicServiceSlotsResponse
Response schema for service slots via the public API
data object[]required
Array [
end_atstring<date-time>required
end_at_tsintegerrequired
Unix timestamp in seconds
objectstringrequired
String representing the object's type.
Possible values: [slot]
start_atstring<date-time>required
start_at_tsintegerrequired
Unix timestamp in seconds
time_zonestringrequired
IANA time zone name
]
PublicServiceSlotsResponse
{
"data": [
{
"end_at": "2025-03-10T10:00:00Z",
"end_at_ts": 1736464800,
"object": "slot",
"start_at": "2025-03-10T09:00:00Z",
"start_at_ts": 1736461200,
"time_zone": "Etc/UTC"
},
{
"end_at": "2025-03-10T12:00:00Z",
"end_at_ts": 1736468400,
"object": "slot",
"start_at": "2025-03-10T11:00:00Z",
"start_at_ts": 1736464800,
"time_zone": "Etc/UTC"
}
]
}