get_all_incidents_matching
Fetch all Rootly incidents matching a search query with automatic pagination handling. Retrieves up to a specified maximum number of results for efficient incident management.
Instructions
Get all incidents matching a query by automatically fetching multiple pages.
This tool automatically handles pagination to fetch multiple pages of results.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
max_results | No | Maximum number of results to return | |
query | No | Search query to filter incidents by title/summary |
Input Schema (JSON Schema)
{
"properties": {
"max_results": {
"default": 500,
"description": "Maximum number of results to return",
"maximum": 1000,
"minimum": 1,
"title": "Max Results",
"type": "integer"
},
"query": {
"default": "",
"description": "Search query to filter incidents by title/summary",
"title": "Query",
"type": "string"
}
},
"type": "object"
}