update_catalog_category
Modify an existing service catalog category by updating its title, description, parent category, icon, active status, or display order in ServiceNow.
Instructions
Update an existing service catalog category.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| active | No | Whether the category is active | |
| category_id | Yes | Category ID or sys_id | |
| description | No | Description of the category | |
| icon | No | Icon for the category | |
| order | No | Order of the category | |
| parent | No | Parent category sys_id | |
| title | No | Title of the category |
Input Schema (JSON Schema)
{
"properties": {
"active": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null,
"description": "Whether the category is active",
"title": "Active"
},
"category_id": {
"description": "Category ID or sys_id",
"title": "Category Id",
"type": "string"
},
"description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Description of the category",
"title": "Description"
},
"icon": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Icon for the category",
"title": "Icon"
},
"order": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"description": "Order of the category",
"title": "Order"
},
"parent": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Parent category sys_id",
"title": "Parent"
},
"title": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Title of the category",
"title": "Title"
}
},
"required": [
"category_id"
],
"type": "object"
}