Attendees
Edit an existing attendee
Getting Started
Attendees
Availabilities
Booking References
Bookings
Credentials
Destination Calendars
Event Types
Memberships
Schedules
Selected Calendars
Teams
Users
Attendees
Edit an existing attendee
PATCH
/
attendees
/
{id}
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"
}
}
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
Was this page helpful?
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"
}
}