Get Service Bookings
GET/calendars/services/bookings
Retrieve service bookings for a location within a given date range, with an optional service location filter.
Request
Version stringrequired
API Version
Available options
v3locationId stringrequired
Location ID
startTime stringrequired
Start Time (timestamp in milliseconds as string)
endTime stringrequired
End Time (timestamp in milliseconds as string)
timezone string
Timezone
serviceLocationId string
Service Location ID
Successful response
- application/json
- Schema
- Example (auto)
Schema
bookingsobject[]required
Service Bookings
{
"bookings": [
{
"bookingId": "7NkT25Vor1v4aQatFsv2",
"locationId": "0007BWpSzSwfiuSl0tR2",
"contactId": "9NkT25Vor1v4aQatFsv2",
"serviceLocationId": "65e5f6dfacf123513228d384",
"title": "John Doe - Hair Styling",
"startTime": "2023-09-25T16:00:00+05:30",
"endTime": "2023-09-25T16:30:00+05:30",
"timezone": "America/New_York",
"status": "confirmed",
"deleted": false
}
]
}