Get Service Booking by ID
GET/calendars/services/bookings/:bookingId
Get a specific service booking by ID
Request
Version stringrequired
API Version
Available options
v3bookingId stringrequired
Unique Service Booking ID
Successful response
- application/json
- Schema
- Example (auto)
Schema
bookingIdstringrequired
Booking ID
locationIdstringrequired
Location ID
contactIdstringrequired
Contact ID
serviceLocationIdstringrequired
Service Location ID
titlestringrequired
Service Booking Title
startTimestringrequired
Start Time
endTimestringrequired
End Time
servicesobject[]required
Services
timezonestringrequired
Timezone
statusstringrequired
Status
deletedbooleanrequired
Tells if the booking is deleted
dateAddedstringrequired
Date Added
dateUpdatedstringrequired
Date Updated
createdByobjectrequired
Booking booked by metadata
meetingLocationstring
Meeting Location (If service location is an ask the booker, then the meeting location is used for the booking)
{
"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",
"services": [
{
"id": "68e5f6dfacf123513228d384",
"serviceCategoryId": "3c4d5e6f7890123456789abc",
"serviceStaffId": "7NkT25Vor1v4aQatFsv2",
"serviceStartTime": "2023-09-25T16:00:00+05:30",
"serviceEndTime": "2023-09-25T16:30:00+05:30"
}
],
"timezone": "America/New_York",
"status": "confirmed",
"deleted": false,
"dateAdded": "2023-09-25T16:00:00+05:30",
"dateUpdated": "2023-09-25T16:00:00+05:30",
"createdBy": {
"userId": "7NkT25Vor1v4aQatFsv2",
"source": "public_api"
},
"meetingLocation": "123 Main St, Anytown, USA"
}