Call webhooks
Create a call webhook
Registers a callback URL for the on-call or post-call event. Wavix sends a POST callback to the URL when the event occurs.
post/v1/calls/webhooks
Request body
Example request
{
"url": "https://you-site.com/webhook"
}Response
Returns the created call webhook.
Example response
{
"success": true,
"event_type": "post-call",
"url": "https://you-site.com/webhook"
}