Skip to main content
GET
/
call
/
webhooks
List configured webhooks
curl --request GET \
  --url https://api.wavix.com/v1/call/webhooks
[
  {
    "event_type": "post-call",
    "url": "https://you-site.com/voice/post-call/webhook"
  },
  {
    "event_type": "on-call",
    "url": "https://you-site.com/voice/on-call/webhook"
  }
]

Authorizations

appid
string
query
required

An API key to authorize your request

Response

A list of webhooks

A list of webhook responses for call events

event_type
enum<string>
required

Type of call events

Available options:
post-call,
on-call
Example:

"post-call"

url
string<uri>
required

Webhook URL

Example:

"https://your-site.com/webhook"

I