create_solution_category
Create and organize solution categories in Freshservice for better knowledge management by defining names, descriptions, and workspace IDs.
Instructions
Create a new solution category in Freshservice.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | ||
name | Yes | ||
workspace_id | No |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"default": null,
"title": "Description",
"type": "string"
},
"name": {
"title": "Name",
"type": "string"
},
"workspace_id": {
"default": null,
"title": "Workspace Id",
"type": "integer"
}
},
"required": [
"name"
],
"title": "create_solution_categoryArguments",
"type": "object"
}