list_catalog_item_variables
Retrieve and manage variables associated with a specific ServiceNow catalog item, including details and pagination options, to streamline catalog item configuration and automation.
Instructions
List catalog item variables
Input Schema
Name | Required | Description | Default |
---|---|---|---|
catalog_item_id | Yes | The sys_id of the catalog item | |
include_details | No | Whether to include detailed information about each variable | |
limit | No | Maximum number of variables to return | |
offset | No | Offset for pagination |
Input Schema (JSON Schema)
{
"description": "Parameters for listing catalog item variables.",
"properties": {
"catalog_item_id": {
"description": "The sys_id of the catalog item",
"title": "Catalog Item Id",
"type": "string"
},
"include_details": {
"default": true,
"description": "Whether to include detailed information about each variable",
"title": "Include Details",
"type": "boolean"
},
"limit": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"description": "Maximum number of variables to return",
"title": "Limit"
},
"offset": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"description": "Offset for pagination",
"title": "Offset"
}
},
"required": [
"catalog_item_id"
],
"title": "ListCatalogItemVariablesParams",
"type": "object"
}