🧪 API Sandbox

Test Rediafile Cloud API v2 endpoints live. Responses are simulated — no real credentials required.

Move Folder

Move a folder into another folder.

POST https://rediafile.com/cloud/api/v2/folder/move

Parameters

Auth token.
Folder to move.
Destination folder id.

Response

Select an endpoint and click "Send Request" to see a simulated response.
const params = new URLSearchParams();
const data = new FormData();
data.append('access_token', 'demo_token_abc123');
data.append('folder_id', '55');
data.append('destination_id', '12');

const resp = await fetch('https://rediafile.com/cloud/api/v2/folder/move', {
  method: 'POST',
  body: data
});
const json = await resp.json();
console.log(json);