org_unit_id).status — Filter by webhook state: active, inactive, or deleted (default: active)webhook_name — Case-insensitive partial match on webhook namefilter — Legacy filter parameter for backward compatibilitylimit — Maximum results per page (default: 100, max: 200)offset — Number of records to skip (default: 0)total count for all matching webhookssort_by — Field to sort by (webhook_name, status, target_url) - default: webhook_namesort_order — Sort direction (asc, desc) - default: asccurl --location 'https://platform-api.convirza.com/v3/webhooks?org_unit_id=&webhook_name=&status=&sort_by=&sort_order=&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"
}