update_catalog_item
Modify service catalog items in ServiceNow by updating attributes such as active status, category, description, name, order, price, and short description using specified item ID.
Instructions
Update a service catalog item.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
params | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"UpdateCatalogItemParams": {
"properties": {
"active": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null,
"title": "Active"
},
"category": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Category"
},
"description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Description"
},
"item_id": {
"title": "Item Id",
"type": "string"
},
"name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Name"
},
"order": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Order"
},
"price": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Price"
},
"short_description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Short Description"
}
},
"required": [
"item_id"
],
"title": "UpdateCatalogItemParams",
"type": "object"
}
},
"properties": {
"params": {
"$ref": "#/$defs/UpdateCatalogItemParams"
}
},
"required": [
"params"
],
"title": "update_catalog_itemArguments",
"type": "object"
}