curl --request PATCH \
--url https://api.cal.com/v1/attendees/{id} \
--header 'Content-Type: application/json' \
--data '{
"email": "[email protected]",
"name": "<string>",
"timeZone": "<string>"
}'
{
"attendee": {
"id": 255,
"bookingId": 313,
"name": "Justin Doe",
"email": "[email protected]",
"timeZone": "Asia/Jerusalem"
}
}
curl --request PATCH \
--url https://api.cal.com/v1/attendees/{id} \
--header 'Content-Type: application/json' \
--data '{
"email": "[email protected]",
"name": "<string>",
"timeZone": "<string>"
}'
{
"attendee": {
"id": 255,
"bookingId": 313,
"name": "Justin Doe",
"email": "[email protected]",
"timeZone": "Asia/Jerusalem"
}
}
ID of the attendee to get
Your API key
Edit an existing attendee related to one of your bookings
The body is of type object
.
OK, attendee edited successfully
The response is of type object
.
Was this page helpful?