Sandbox
Explore every endpoint with simulated responses — no credentials required.
POST
/folder/move
Move Folder
Move a folder to a different parent folder.
Click "Send request" to see a simulated response.
Code Examples
const res = await fetch('https://rediafile.com/cloud/api/v2/folder/move', {
method: 'POST',
headers: { 'Authorization': `Bearer ${token}` },
body: new URLSearchParams({
folder_id: 'fld_123',
parent_id: 'fld_456'
}),
});
const data = await res.json();