Getting Started
Attendees
Availabilities
Booking References
Bookings
Credentials
Destination Calendars
Event Types
Memberships
Schedules
Selected Calendars
Teams
Users
Event Types
Edit an existing eventType
PATCH
/
event-types
/
{id}
curl --request PATCH \
--url https://api.cal.com/v1/event-types/{id} \
--header 'Content-Type: application/json' \
--data '{
"event-type": {
"summary": "An example of event type PATCH request",
"value": {
"length": 60,
"requiresConfirmation": true
}
}
}'
Authorizations
Path Parameters
ID of the eventType to edit
Query Parameters
Your API Key
Body
application/json
Create a new event-type related to your user or team
The body is of type object
.
Response
201
OK, eventType edited successfully
curl --request PATCH \
--url https://api.cal.com/v1/event-types/{id} \
--header 'Content-Type: application/json' \
--data '{
"event-type": {
"summary": "An example of event type PATCH request",
"value": {
"length": 60,
"requiresConfirmation": true
}
}
}'
Assistant
Responses are generated using AI and may contain mistakes.