POST
/
v2
/
bookings
/
{bookingUid}
/
reassign
/
{userId}
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": {}
}

Headers

cal-api-version
string
required

Must be set to 2024-08-13

Authorization
string
required

value must be Bearer <token> where <token> either managed user access token or api key prefixed with cal_

Path Parameters

bookingUid
string
required
userId
number
required

Body

application/json
reason
string

Reason for reassigning the booking

Example:

"Host has to take another call"

Response

200 - application/json
status
enum<string>
required
Available options:
success,
error
Example:

"success"

data
object
required

Booking data, which can be either a ReassignAutoBookingOutput object or a ReassignManualBookingOutput object