Webhooks
Edit an existing webhook
Getting Started
Attendees
Availabilities
Booking References
Bookings
Credentials
Destination Calendars
Event Types
Memberships
Schedules
Selected Calendars
Teams
Users
Webhooks
Edit an existing webhook
PATCH
/
webhooks
/
{id}
curl --request PATCH \
--url https://api.cal.com/v1/webhooks/{id} \
--header 'Content-Type: application/json' \
--data '{
"subscriberUrl": "<string>",
"eventTriggers": "BOOKING_CREATED",
"active": true,
"payloadTemplate": "<string>",
"eventTypeId": 123,
"secret": "<string>"
}'
Authorizations
Path Parameters
Numeric ID of the webhook to edit
Query Parameters
Your API key
Body
application/json
Edit an existing webhook
The body is of type object
.
Response
201
OK, webhook edited successfully
Was this page helpful?
curl --request PATCH \
--url https://api.cal.com/v1/webhooks/{id} \
--header 'Content-Type: application/json' \
--data '{
"subscriberUrl": "<string>",
"eventTriggers": "BOOKING_CREATED",
"active": true,
"payloadTemplate": "<string>",
"eventTypeId": 123,
"secret": "<string>"
}'