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

apiKey
string
query
required

Path Parameters

id
integer
required

ID of the attendee to get

Query Parameters

apiKey
string
required

Your API key

Body

application/json
Edit an existing attendee related to one of your bookings
email
string
name
string
timeZone
string

Response

201
application/json
OK, attendee edited successfully
attendee
object