create_solution_folder
Create new folders within Freshservice solution categories to organize and manage content based on department IDs and visibility settings.
Instructions
Create a new folder under a solution category in Freshservice.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category_id | Yes | ||
department_ids | Yes | ||
description | No | ||
name | Yes | ||
visibility | No |
Input Schema (JSON Schema)
{
"properties": {
"category_id": {
"title": "Category Id",
"type": "integer"
},
"department_ids": {
"items": {
"type": "integer"
},
"title": "Department Ids",
"type": "array"
},
"description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Description"
},
"name": {
"title": "Name",
"type": "string"
},
"visibility": {
"default": 4,
"title": "Visibility",
"type": "integer"
}
},
"required": [
"name",
"category_id",
"department_ids"
],
"title": "create_solution_folderArguments",
"type": "object"
}