org_unit_id. Webhooks are outbound notification endpoints that fire when specific call or SMS events occur in your account.webhook_name — partial, case-insensitive search against the webhook display name.filter — legacy filter string for backward compatibility.limit (default: 100) and offset (default: 0) to page through results. The response includes a total count.curl --location --request GET 'https://platform-api.convirza.com/v3/webhooks/list?org_unit_id&webhook_name&status&offset&limit&filter' \
--header 'Authorization: Bearer <token>'{
"code": 200,
"message": "Success",
"data": {
"webhooks": [
{
"webhook_id": 123,
"webhook_name": "Lead Notification Webhook",
"target_url": "https://api.example.com/webhooks/leads"
},
{
"webhook_id": 124,
"webhook_name": "Call Completed Webhook",
"target_url": "https://api.example.com/webhooks/calls"
}
],
"total": 25
},
"request_id": "550e8400-e29b-41d4-a716-446655440000",
"timestamp": "2026-01-20T12:34:56.789Z"
}