Skip to main content
PATCH
/
bookings
/
{id}
Edit an existing booking
curl --request PATCH \
  --url 'https://api.cal.com/v1/bookings/{id}?apiKey=' \
  --header 'Content-Type: application/json' \
  --data '
{
  "title": "<string>",
  "start": "2023-11-07T05:31:56Z",
  "end": "2023-11-07T05:31:56Z",
  "status": "<string>",
  "description": "<string>"
}
'
{}

Authorizations

apiKey
string
query
required

Path Parameters

id
integer
required

ID of the booking to edit

Query Parameters

apiKey
string
required

Your API key

Body

application/json

Edit an existing booking related to one of your event-types

title
string

Booking event title

start
string<date-time>

Start time of the Event

end
string<date-time>

End time of the Event

status
string

Acceptable values one of ["ACCEPTED", "PENDING", "CANCELLED", "REJECTED"]

description
string

Description of the meeting

Response

OK, booking edited successfully