list_catalog_item_variables
Retrieve variables associated with a ServiceNow catalog item to understand required inputs and configuration options for service requests.
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)
{
"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"
],
"type": "object"
}