Webhooks
Create a webhook
Creates a new webhook. Name must be unique within the tenant.
post/webhooks
Request body
Example request
{
"name": "Call Summary Notifications",
"url": "https://example.com/webhooks/modjo",
"events": [
"call_summarized"
]
}Response
Webhook created
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"
}