move_catalog_items
Transfer catalog items to a new category by specifying item IDs and a target category ID using the ServiceNow MCP Server API.
Instructions
Move catalog items to a different category.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
item_ids | Yes | List of catalog item IDs to move | |
target_category_id | Yes | Target category ID to move items to |
Input Schema (JSON Schema)
{
"description": "Parameters for moving catalog items between categories.",
"properties": {
"item_ids": {
"description": "List of catalog item IDs to move",
"items": {
"type": "string"
},
"title": "Item Ids",
"type": "array"
},
"target_category_id": {
"description": "Target category ID to move items to",
"title": "Target Category Id",
"type": "string"
}
},
"required": [
"item_ids",
"target_category_id"
],
"title": "MoveCatalogItemsParams",
"type": "object"
}