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
<?php
$ch = curl_init('https://rediafile.com/cloud/api/v2/folder/move');
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt($ch, CURLOPT_HTTPHEADER, ['Authorization: Bearer ' . $token]);
curl_setopt($ch, CURLOPT_POSTFIELDS, [
'folder_id' => 'fld_123',
'parent_id' => 'fld_456',
]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
curl_close($ch);
$data = json_decode($response, true);