list_incidents
Retrieve ServiceNow incidents with filters for state, assigned user, category, and search queries. Supports 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)
{
"description": "Parameters for listing incidents.",
"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"
}
},
"title": "ListIncidentsParams",
"type": "object"
}