/
Get webhook executions
Get webhook execution history with filtering options.
Filters:
- hookId: Filter by specific webhook (optional - omit for all webhooks)
- status: Filter by execution status (success, failed, pending)
- dateFrom: Filter executions after this date (ISO 8601)
- dateTo: Filter executions before this date (ISO 8601)
Use pagination parameters (page & limit) for optimal performance.
Security
authJWT
- Mock serverhttps://docs.pers.ninja/_mock/swagger/hooks/executions
- https://api.pers.ninja/v2https://api.pers.ninja/v2/hooks/executions
curl -i -X GET \
'https://docs.pers.ninja/_mock/swagger/hooks/executions?hookId=string&status=string&dateFrom=string&dateTo=string&page=string&limit=string' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Paginated list of webhook executions
Response
{ "data": [], "pagination": { "page": 1, "limit": 50, "total": 150, "pages": 3, "hasNext": true, "hasPrev": false }, "metadata": { "includes": [ … ] } }