list_incidents
Retrieve and filter incidents from ServiceNow with options to search by state, assigned user, category, or custom query, supporting pagination for efficient incident management.
Instructions
List incidents from ServiceNow
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| assigned_to | No | Filter by assigned user | |
| category | No | Filter by category | |
| limit | No | Maximum number of incidents to return | |
| offset | No | Offset for pagination | |
| query | No | Search query for incidents | |
| state | No | Filter by incident state |
Input Schema (JSON Schema)
{
"properties": {
"assigned_to": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Filter by assigned user",
"title": "Assigned To"
},
"category": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Filter by category",
"title": "Category"
},
"limit": {
"default": 10,
"description": "Maximum number of incidents to return",
"title": "Limit",
"type": "integer"
},
"offset": {
"default": 0,
"description": "Offset for pagination",
"title": "Offset",
"type": "integer"
},
"query": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Search query for incidents",
"title": "Query"
},
"state": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Filter by incident state",
"title": "State"
}
},
"type": "object"
}