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.
Move or rename an uploaded file
| Field | Value |
|---|
| Name | move_upload |
| Group | Uploads |
Playground
{
"type": "object",
"properties": {
"project_reference": {
"type": "string",
"description": "Project ID or slug"
},
"source_path": {
"type": "string",
"description": "Current file path. Must be URL-encoded if it contains special characters or spaces."
},
"destination_path": {
"type": "string",
"description": "New file path. Must be URL-encoded if it contains special characters or spaces."
}
},
"required": [
"project_reference",
"source_path",
"destination_path"
],
"additionalProperties": false,
"description": "Input schema for the move_upload tool.",
"$schema": "http://json-schema.org/draft-07/schema#"
}
Output schema
{
"type": "object",
"properties": {
"source_path": {
"type": "string",
"description": "The source path associated with this tool result."
},
"destination_path": {
"type": "string",
"description": "The destination path associated with this tool result."
}
},
"required": [
"source_path",
"destination_path"
],
"additionalProperties": false,
"description": "Structured result returned by the move_upload tool.",
"$schema": "http://json-schema.org/draft-07/schema#"
}