Authorizations
Path Parameters
ID of the attendee to get
Query Parameters
Your API key
Body
application/json
Edit an existing attendee related to one of your bookings
Response
OK, attendee edited successfully
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
OK, attendee edited successfully
Show child attributes
Was this page helpful?