Documentation Index
Fetch the complete documentation index at: https://veryfront.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
Create a new folder in a connected external storage provider. Use list_external_files to find parent folder IDs.
| Field | Value |
|---|
| Name | create_external_folder |
| Group | External Storage |
Playground
{
"type": "object",
"properties": {
"project_reference": {
"type": "string",
"description": "Project ID or slug"
},
"provider": {
"type": "string",
"description": "Cloud provider name"
},
"parent_id": {
"type": "string",
"description": "Parent folder ID (use \"root\" for root folder)"
},
"name": {
"type": "string",
"description": "Folder name"
}
},
"required": [
"project_reference",
"provider",
"parent_id",
"name"
],
"additionalProperties": false,
"description": "Input schema for the create_external_folder tool.",
"$schema": "http://json-schema.org/draft-07/schema#"
}
Output schema
{
"type": "object",
"properties": {
"message": {
"type": "string",
"description": "Agent-readable status message or rendered content for the external storage operation."
}
},
"required": [
"message"
],
"additionalProperties": false,
"description": "Structured result returned by the create_external_folder tool.",
"$schema": "http://json-schema.org/draft-07/schema#"
}