curl --request POST \
--url https://api.cal.com/v2/bookings/{bookingUid}/reassign \
--header 'Authorization: <authorization>' \
--header 'cal-api-version: <cal-api-version>'
{
"status": "success",
"data": {}
}
Currently only supports reassigning host for round robin bookings. The provided authorization header refers to the owner of the booking.
curl --request POST \
--url https://api.cal.com/v2/bookings/{bookingUid}/reassign \
--header 'Authorization: <authorization>' \
--header 'cal-api-version: <cal-api-version>'
{
"status": "success",
"data": {}
}
Must be set to 2024-08-13
value must be Bearer <token>
where <token>
is api key prefixed with cal_ or managed user access token
The response is of type object
.
Was this page helpful?