cURL
curl --request POST \ --url https://api.veryfront.com/uploads/{upload_reference}/move \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "new_path": "<string>" } '
{ "success": true, "error": "<string>", "file": { "id": "<string>", "path": "<string>", "file_name": "<string>", "content_type": "<string>", "size": 123, "url": "<string>", "status": "pending", "visibility": "project", "created_at": "<string>", "updated_at": "<string>", "deleted_at": "<string>" } }
Moves an upload to a new path.
Authentication via JWT token or API key. JWT: Get from Veryfront dashboard. API Key: Format "vf__" - create via /api-keys endpoint.
Upload ID (UUID)
Destination file path
File moved successfully
Show child attributes