get_incidents
Retrieve security incidents from Lumu Defender API with pagination and flexible filters. Filter by date, status, adversary types, or labels, and automatically fetch all results.
Instructions
Retrieve security incidents from Lumu Defender API with pagination support
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| from_date | No | Start date in ISO format (e.g., 2024-01-01T00:00:00Z). Default: 7 days ago. Max range: 90 days unless fetch_all is true. | |
| to_date | No | End date in ISO format (e.g., 2024-01-08T00:00:00Z). Default: now | |
| status | No | Filter by incident status. If not specified, all statuses are returned | |
| adversary_types | No | Filter by adversary types. If not specified, all types are returned | |
| labels | No | Filter by label IDs. If not specified, all labels are returned | |
| page | No | Page number for pagination (0-indexed). Default: 0 | |
| limit | No | Number of items per page. Default: 50, max: 100 | |
| fetch_all | No | If true, automatically fetches ALL incidents with pagination. Handles large date ranges by chunking. Use this to get complete incident lists. |