list_catalog_items
Retrieve available service catalog items from ServiceNow with filtering options for category, search query, and active status to support service request management.
Instructions
List service catalog items.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| active | No | Whether to only return active catalog items | |
| category | No | Filter by category | |
| limit | No | Maximum number of catalog items to return | |
| offset | No | Offset for pagination | |
| query | No | Search query for catalog items |
Input Schema (JSON Schema)
{
"properties": {
"active": {
"default": true,
"description": "Whether to only return active catalog items",
"title": "Active",
"type": "boolean"
},
"category": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Filter by category",
"title": "Category"
},
"limit": {
"default": 10,
"description": "Maximum number of catalog items 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 catalog items",
"title": "Query"
}
},
"type": "object"
}