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.
Update the content of an existing file in a connected external storage provider. Use list_external_files to find file IDs.
| Field | Value |
|---|
| Name | update_external_file |
| Group | External Storage |
Playground
{
"type": "object",
"properties": {
"project_reference": {
"type": "string",
"description": "Project ID or slug"
},
"provider": {
"type": "string",
"description": "Cloud provider name"
},
"file_id": {
"type": "string",
"description": "File ID to update"
},
"content": {
"type": "string",
"description": "New text content for the file"
}
},
"required": [
"project_reference",
"provider",
"file_id",
"content"
],
"additionalProperties": false,
"description": "Input schema for the update_external_file 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 update_external_file tool.",
"$schema": "http://json-schema.org/draft-07/schema#"
}