# create_folder **Create an immut folder** Create a folder in a workspace (optionally under a parent) so documents are organised, e.g. "Contracts" or "Intellectual property". Returns the folder id to pass to protect_path/protect_file. - Access: write - Calls: `/api/v1/folders` ## Arguments | Name | Type | Required | Description | |---|---|---|---| | `name` | string | **yes** | | | `workspace` | string | **yes** | | | `parentFolder` | string | no | | ## Tool contract ```json { "name": "create_folder", "title": "Create an immut folder", "description": "Create a folder in a workspace (optionally under a parent) so documents are organised, e.g. \"Contracts\" or \"Intellectual property\". Returns the folder id to pass to protect_path/protect_file.", "access": "write", "destructive": false, "hostedOnProduction": true, "restEndpoint": "/api/v1/folders", "arguments": { "name": { "type": "string", "required": true, "description": "" }, "workspace": { "type": "string", "required": true, "description": "" }, "parentFolder": { "type": "string", "required": false, "description": "" } } } ```