update_catalog_item
Modify service catalog item details including name, description, category, price, and activation status to maintain accurate service offerings.
Instructions
Update a service catalog item.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| active | No | ||
| category | No | ||
| description | No | ||
| item_id | Yes | ||
| name | No | ||
| order | No | ||
| price | No | ||
| short_description | No |
Input Schema (JSON Schema)
{
"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"
],
"type": "object"
}