update_folder
Modify folder properties including name, description, and parent location to organize API endpoints and testing workflows within the GASSAPI backend system.
Instructions
Update folder name, description, or parent
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| folderId | Yes | Folder ID to update | |
| name | No | New folder name | |
| description | No | New folder description | |
| parentId | No | New parent folder ID (null to move to root) |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "New folder description",
"type": "string"
},
"folderId": {
"description": "Folder ID to update",
"type": "string"
},
"name": {
"description": "New folder name",
"type": "string"
},
"parentId": {
"description": "New parent folder ID (null to move to root)",
"type": "string"
}
},
"required": [
"folderId"
],
"type": "object"
}