Attendees
Creates a new attendee
Getting Started
Attendees
Availabilities
Booking References
Bookings
Credentials
Destination Calendars
Event Types
Memberships
Schedules
Selected Calendars
Teams
Users
Attendees
Creates a new attendee
POST
/
attendees
curl --request POST \
--url https://api.cal.com/v1/attendees \
--header 'Content-Type: application/json' \
--data '{
"bookingId": 123,
"email": "[email protected]",
"name": "<string>",
"timeZone": "<string>"
}'
{
"attendee": {
"id": 255,
"bookingId": 313,
"name": "Justin Doe",
"email": "[email protected]",
"timeZone": "Asia/Jerusalem"
},
"message": "Attendee created successfully"
}
Authorizations
Query Parameters
Your API key
Body
application/json
Create a new attendee related to one of your bookings
Was this page helpful?
curl --request POST \
--url https://api.cal.com/v1/attendees \
--header 'Content-Type: application/json' \
--data '{
"bookingId": 123,
"email": "[email protected]",
"name": "<string>",
"timeZone": "<string>"
}'
{
"attendee": {
"id": 255,
"bookingId": 313,
"name": "Justin Doe",
"email": "[email protected]",
"timeZone": "Asia/Jerusalem"
},
"message": "Attendee created successfully"
}