ActionTheHiveUpdated September 2026
How do I list alerts in TheHive?
Short answer: You can list alerts in TheHive by hand from its own interface, but it won’t repeat itself. On TinyCommand, add the TheHive List Alerts action to a workflow, map its 1 input from any upstream app, and it runs automatically every time the trigger fires. No code, and a free tier to start.
Inputs
The fields this action accepts.
Every field can be mapped from an upstream trigger, AI step, table row, or hard-coded literal.
| Field | Type | Required | Description |
|---|---|---|---|
Status status | options | Optional | Status. Options: All, New, Updated, Ignored, Imported |
Sample request
{"status": "{{trigger.status}}"}
Returns
[{"id": "alert_123","title": "Suspicious Activity","source": "IDS","status": "New","severity": 3}]
Use these fields in downstream nodes for routing, logging, or error handling.
Triggered by
Apps that pair well as the trigger for List Alerts.
Any of these apps can fire this action as part of a workflow.
FAQ
Questions about List Alerts.
What does the List Alerts action do in TheHive?
Lists alerts in TheHive matching the supplied filters (severity, status, source, date range). Useful for periodic alert-fatigue or aging reports.
What inputs does List Alerts require?
List Alerts has no required inputs. Sensible defaults are applied if you leave fields blank.
Can I use dynamic inputs from earlier workflow nodes?
Yes. Any field on this action can pull values from upstream nodes, whether that's a form response, a trigger payload, an AI output, or a lookup result.
What happens if TheHive returns an error?
The run history shows the failed step with its input and the error message TheHive returned, so you can fix the input and run the workflow again. Automatic retries are built into HTTP steps only, where you can also set your own retry count and delay.
Does List Alerts support batch operations?
Run List Alerts inside a loop to process each item in an array. TinyCommand does not throttle calls for you, so for large arrays add a Delay step if you need to stay within TheHive's rate limits.
More actions
Other TheHive actions.
Action
Create Alert
Creates a new alert in TheHive with title, description, severity, observables, and source. Common entry point for piping detections from SIEM/EDR tooling into TheHive.
ActionCreate Case
Creates a new investigation case in TheHive with title, description, severity, TLP, and assigned user. Use it to promote a manual report or external ticket into a formal case.