PUT /bookings/{bookingId}
PUT / bookings/{bookingId}
This endpoint is used to update an existing booking in the BodyShop Booster system.
It allows modification of booking-specific details such as start time, end time, and description.
The booking to be updated is identified using the bookingId provided in the request path.
Environment | Region | URL | Documentation |
|---|---|---|---|
Staging | US |
|
|
| Canada |
|
|
Production | US |
|
|
| Canada |
|
|
Request Payload
Required Fields
startTime: The time of the booking is started.endTime: The time of the booking is ended.
{
"startTime": "2025-02-15T09:00:00.000Z",
"endTime": "2025-02-15T10:00:00.000Z",
"description": "Drop-off for estimate - rescheduled"
}