create_folder
Create a new folder in your GASSAPI project to organize API endpoints, environments, and testing workflows with specified name and optional parent folder structure.
Instructions
Create a new folder in the project
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Folder name | |
| description | No | Folder description | |
| parentId | No | Parent folder ID (optional, creates root-level folder if not provided) | |
| projectId | No | Project ID (optional, will use current project if not provided) |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "Folder description",
"type": "string"
},
"name": {
"description": "Folder name",
"type": "string"
},
"parentId": {
"description": "Parent folder ID (optional, creates root-level folder if not provided)",
"type": "string"
},
"projectId": {
"description": "Project ID (optional, will use current project if not provided)",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}