Skip to main content
Move or rename an uploaded file

Tool details

FieldValue
Namemove_upload
GroupUploads

Playground

Input schema

Input schema
{
  "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

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#"
}