curl --request POST \
--url https://api.cal.com/v2/bookings/{bookingUid}/reassign/{userId} \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--header 'cal-api-version: <cal-api-version>' \
--data '
{
"reason": "Host has to take another call"
}
'{
"status": "success",
"data": "<unknown>"
}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/{userId} \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--header 'cal-api-version: <cal-api-version>' \
--data '
{
"reason": "Host has to take another call"
}
'{
"status": "success",
"data": "<unknown>"
}Must be set to 2024-08-13. If not set to this value, the endpoint will default to an older version.
value must be Bearer <token> where <token> is api key prefixed with cal_ or managed user access token
Reason for reassigning the booking
"Host has to take another call"
Was this page helpful?