Webhooks
Update a webhook
Partially updates an existing webhook. Only provided fields are updated.
patch/webhooks/{uuid}
Path parameters
uuidstring uuid required
Webhook UUID
Example:a1b2c3d4-e5f6-7890-abcd-ef1234567890
Webhook UUID
Request body
Example request
{
"name": "Call Summary Notifications",
"url": "https://example.com/webhooks/modjo",
"events": [
"call_summarized"
]
}Response
Webhook updated
Example response
{
"uuid": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"name": "My Webhook",
"url": "https://example.com/webhook",
"events": [
"call_summarized"
],
"createdOn": "2024-06-15T14:30:00.000Z",
"modifiedOn": "2024-06-15T15:00:00.000Z"
}Changes
No recorded changes to this endpoint across all 1 revision of this API.