create_catalog_category
Define and organize service catalog categories in ServiceNow by setting titles, descriptions, icons, order, and parent relationships for improved service management.
Instructions
Create a new service catalog category.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
params | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"CreateCatalogCategoryParams": {
"description": "Parameters for creating a new service catalog category.",
"properties": {
"active": {
"default": true,
"description": "Whether the category is active",
"title": "Active",
"type": "boolean"
},
"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": {
"description": "Title of the category",
"title": "Title",
"type": "string"
}
},
"required": [
"title"
],
"title": "CreateCatalogCategoryParams",
"type": "object"
}
},
"properties": {
"params": {
"$ref": "#/$defs/CreateCatalogCategoryParams"
}
},
"required": [
"params"
],
"title": "create_catalog_categoryArguments",
"type": "object"
}