update_solution_category
Modify solution category details in Freshservice, including name, description, workspace ID, and default category status, using category ID for identification.
Instructions
Update a solution category in Freshservice.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category_id | Yes | ||
default_category | No | ||
description | No | ||
name | Yes | ||
workspace_id | No |
Input Schema (JSON Schema)
{
"properties": {
"category_id": {
"title": "Category Id",
"type": "integer"
},
"default_category": {
"default": null,
"title": "Default Category",
"type": "boolean"
},
"description": {
"default": null,
"title": "Description",
"type": "string"
},
"name": {
"title": "Name",
"type": "string"
},
"workspace_id": {
"default": null,
"title": "Workspace Id",
"type": "integer"
}
},
"required": [
"category_id",
"name"
],
"title": "update_solution_categoryArguments",
"type": "object"
}