Skip to main content
GET
/
v1
/
calls
/
webhooks
List configured webhooks
curl --request GET \
  --url https://api.wavix.com/v1/calls/webhooks \
  --header 'Authorization: Bearer <token>'
[
  {
    "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

Authorization
string
header
required

Bearer token using appid (Authorization: Bearer )

Response

A list of webhooks

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"