List all Webhooks
GET /api/v1/integrations/webhooks/
Headers
Name | Value |
---|---|
Authorization | Bearer Base64Encoded(Client ID:Client Secret) |
Response
{
"success": true,
"message": "Retrieved all webhooks",
"data": [
{
"id": 123,
"event": "call.status",
"active": true,
"callback_url": "CALLBACK_URL",
"created_at": "",
"updated_at": ""
}
]
}