webhook
Get a webhook
Retrieves a single webhook subscription: its target URL and the events currently delivered to it. Use GET /webhooks to discover the identifiers of your webhooks.
Permission: No specific permission required. A valid API key is sufficient.
Monitoring: Not needed.
get/webhooks/{webhookId}
Path parameters
webhookIdstring uuid required
Example:bc5c5a41-44c5-5b7c-a521-45bf56d82cbe
The identifier of the webhook, as returned in the uuid field.
Response
Successful operation — returns the webhook details.
Example response
{
"uuid": "bc5c5a41-44c5-5b7c-a521-45bf56d82cbe",
"target_url": "https://api.example.com/webhooks/ringover",
"events": [
"call.started",
"call.answered",
"call.ended"
],
"signing_key": "b7c1f2e4a9d84c3f8e5b6a7d9c0e1f23"
}