POST
/
attendees
curl --request POST \
  --url https://api.cal.com/v1/attendees \
  --header 'Content-Type: application/json' \
  --data '{
  "bookingId": 123,
  "email": "jsmith@example.com",
  "name": "<string>",
  "timeZone": "<string>"
}'
{
  "attendee": {
    "id": 255,
    "bookingId": 313,
    "name": "Justin Doe",
    "email": "justin.doe@example.com",
    "timeZone": "Asia/Jerusalem"
  },
  "message": "Attendee created successfully"
}

Authorizations

apiKey
string
query
required

Query Parameters

apiKey
string
required

Your API key

Body

application/json
Create a new attendee related to one of your bookings

The body is of type object.

Response

200
application/json
Attendee created successfully.

The response is of type object.