Skip to main content

Retrieve a Webhook

Retrieve a webhook with the provided id.

GET/api/v1/integrations/webhook/{hook_id}/

Headers

NameValue
AuthorizationBearer Base64Encoded(Client ID:Client Secret)

Response

{
"success": true,
"message": "Successfully retrieved webhook",
"data": {
"id": 123,
"event": "call.status",
"active": true,
"callback_url": "CALLBACK_URL",
"created_at": "",
"updated_at": ""
}
}