list_catalog_items
Retrieve service catalog items from a ServiceNow instance based on filters like category, activity status, and search queries. Supports pagination for managing large datasets.
Instructions
List service catalog items.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
params | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"ListCatalogItemsParams": {
"description": "Parameters for listing service catalog items.",
"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"
}
},
"title": "ListCatalogItemsParams",
"type": "object"
}
},
"properties": {
"params": {
"$ref": "#/$defs/ListCatalogItemsParams"
}
},
"required": [
"params"
],
"title": "list_catalog_itemsArguments",
"type": "object"
}