v50

latestOpenAPI 3.1.0MITraw.githubusercontent.com2026-06-16122182589.7 KB
Call webhooks

List call webhooks

Returns the configured call webhooks for the authenticated account. Wavix sends POST callbacks for on-call and post-call events.

get/v1/calls/webhooks

Response

Returns the list of call webhooks.

event_type'post-call' | 'on-call' required

Type of call event the webhook subscribes to. One of post-call (delivered once after the call ends) or on-call (delivered for in-call events while the call is active).

urlstring uri required

Webhook URL

Example response

[
  {
    "event_type": "post-call",
    "url": "https://your-site.com/webhook"
  }
]