create_catalog_category
Enables creating new service catalog categories in ServiceNow by defining a title, description, parent category, icon, active status, and order.
Instructions
Create a new service catalog category.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
active | No | Whether the category is active | |
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 | Yes | Title of the category |
Input Schema (JSON Schema)
{
"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"
}