Webhooks
Edit a webhook
Edits the webhook details for the given webhook ID.
patch/webhooks/{webhook_id}
Path parameters
webhook_idstring required
ID of the webhook
Request body
Example request
{
"url": "https://webhook.site/b23a5bbd-c7b0-4ced-a9e2-78ae7889897e"
}Response
Operation successful
Example response
{
"success": true,
"data": {
"id": "0d1f069d-43bb-489a-ad8c-7eb95592ba8e",
"name": "All events webhook",
"url": "https://webhook.site/b23a5bbd-c7b0-4ced-a9e2-78ae7889897e",
"events": [
"meeting.started",
"meeting.ended",
"meeting.participantJoined",
"meeting.participantLeft",
"meeting.chatSynced",
"recording.statusUpdate",
"livestreaming.statusUpdate",
"meeting.transcript",
"meeting.summary"
],
"created_at": "2022-05-28T07:01:53.075Z",
"updated_at": "2022-05-28T07:01:53.075Z"
}
}