v1
latestOpenAPI 3.0.02026-07-17121287546.7 KBEvent Types
Create an event type
<Note>Please make sure to pass in the cal-api-version header value as mentioned in the Headers section. Not passing the correct value will default to an older version of this endpoint.</Note>
post/v2/event-types
Headers
cal-api-versionstring required
Must be set to 2024-06-14. If not set to this value, the endpoint will default to an older version.
Authorizationstring required
value must be Bearer <token> where <token> is api key prefixed with cal_ or managed user access token
Request body
Example request
{
"lengthInMinutes": 60,
"lengthInMinutesOptions": [
15,
30,
60
],
"title": "Learn the secrets of masterchief!",
"slug": "learn-the-secrets-of-masterchief",
"description": "Discover the culinary wonders of the Argentina by making the best flan ever!",
"bookingFields": [
{
"type": "name"
}
],
"bookingLimitsCount": {
"day": 1,
"week": 2,
"month": 3,
"year": 4
},
"bookerActiveBookingsLimit": {
"maximumActiveBookings": 3
},
"bookingLimitsDuration": {
"day": 60,
"week": 120,
"month": 180,
"year": 240
},
"bookingWindow": {
"value": 5,
"rolling": true
},
"confirmationPolicy": {
"type": "always",
"noticeThreshold": {
"unit": "minutes",
"count": 30
}
},
"recurrence": {
"interval": 10,
"occurrences": 10
},
"color": {
"lightThemeHex": "#292929",
"darkThemeHex": "#fafafa"
},
"seats": {
"seatsPerTimeSlot": 4,
"showAttendeeInfo": true,
"showAvailabilityCount": true
},
"customName": "{Event type title} between {Organiser} and {Scheduler}",
"successRedirectUrl": "https://masterchief.com/argentina/flan/video/9129412",
"disableCancelling": {
"disabled": true
},
"disableRescheduling": {
"disabled": true,
"minutesBefore": 60
},
"locations": [
{
"type": "address",
"address": "123 Example St, City, Country"
}
]
}Response
Example response
{
"status": "success",
"data": {
"id": 1,
"lengthInMinutes": 60,
"lengthInMinutesOptions": [
15,
30,
60
],
"title": "Learn the secrets of masterchief!",
"slug": "learn-the-secrets-of-masterchief",
"description": "Discover the culinary wonders of Argentina by making the best flan ever!",
"locations": [
{
"type": "address",
"address": "123 Example St, City, Country"
}
],
"bookingFields": [
{
"type": "name"
}
],
"recurrence": {
"interval": 10,
"occurrences": 10
},
"bookerActiveBookingsLimit": {
"maximumActiveBookings": 3
},
"bookingWindow": [
{
"value": 5,
"rolling": true
}
],
"color": {
"lightThemeHex": "#292929",
"darkThemeHex": "#fafafa"
},
"seats": {
"seatsPerTimeSlot": 4,
"showAttendeeInfo": true,
"showAvailabilityCount": true
},
"disableCancelling": {
"disabled": true
},
"disableRescheduling": {
"disabled": true,
"minutesBefore": 60
},
"ownerId": 10,
"bookingUrl": "https://cal.com/john-doe/30min"
}
}