update_solution_folder
Modify an existing solution folder's details, including name, description, and visibility, in Freshservice using the specified folder ID.
Instructions
Update an existing solution folder's details in Freshservice.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| description | No | ||
| id | Yes | ||
| name | No | ||
| visibility | No |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Description"
},
"id": {
"title": "Id",
"type": "integer"
},
"name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Name"
},
"visibility": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Visibility"
}
},
"required": [
"id"
],
"title": "update_solution_folderArguments",
"type": "object"
}