Webhooks

List webhooks

List all webhook subscriptions.

GET
/webhooks

List all webhook subscriptions.

Authorization

ApiKeyAuth
X-API-Key<token>

Voice platform authentication secret. Create one from the API Keys endpoint or your dashboard.

In: header

Response Body

application/json

application/json

curl -X GET "https://example.com/webhooks"
{  "data": [    {      "id": "wh_77ka",      "url": "https://hooks.acme.com/voice",      "events": [        "call.completed",        "tool.invoked"      ],      "secretHint": "whsec_…c3",      "isActive": true    }  ]}
{  "statusCode": 401,  "message": "Unauthorized",  "error": "Unauthorized"}