list_folders
Display all folders in your GASSAPI project with optional hierarchical tree view and filtering capabilities to organize API endpoints and workflows.
Instructions
List all folders for current project with optional tree view
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| projectId | No | Project ID (optional, will use current project if not provided) | |
| parentId | No | Parent folder ID to filter subfolders | |
| includeTree | No | Include hierarchical tree view | |
| activeOnly | No | Show only active folders |
Input Schema (JSON Schema)
{
"properties": {
"activeOnly": {
"default": true,
"description": "Show only active folders",
"type": "boolean"
},
"includeTree": {
"default": false,
"description": "Include hierarchical tree view",
"type": "boolean"
},
"parentId": {
"description": "Parent folder ID to filter subfolders",
"type": "string"
},
"projectId": {
"description": "Project ID (optional, will use current project if not provided)",
"type": "string"
}
},
"type": "object"
}