get_catalog_item
Retrieve detailed information about a specific service catalog item from ServiceNow by providing its unique ID, enabling users to access item specifications and request details.
Instructions
Get a specific service catalog item.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| item_id | Yes | Catalog item ID or sys_id |
Input Schema (JSON Schema)
{
"properties": {
"item_id": {
"description": "Catalog item ID or sys_id",
"title": "Item Id",
"type": "string"
}
},
"required": [
"item_id"
],
"type": "object"
}