update_catalog_category
Update an existing service catalog category in ServiceNow, modifying attributes like title, description, icon, order, parent category, and active status using the Category ID or sys_id.
Instructions
Update an existing service catalog category.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
params | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"UpdateCatalogCategoryParams": {
"description": "Parameters for updating a service catalog category.",
"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"
],
"title": "UpdateCatalogCategoryParams",
"type": "object"
}
},
"properties": {
"params": {
"$ref": "#/$defs/UpdateCatalogCategoryParams"
}
},
"required": [
"params"
],
"title": "update_catalog_categoryArguments",
"type": "object"
}