Switch language

Sandbox

Explore every endpoint with simulated responses — no credentials required.

POST /folder/delete

Delete Folder

Permanently delete a folder and all its contents.

Folder ID to delete

Reset form

Click "Send request" to see a simulated response.

Code Examples

const res = await fetch('https://rediafile.com/cloud/api/v2/folder/delete', {
  method: 'POST',
  headers: { 'Authorization': `Bearer ${token}` },
  body: new URLSearchParams({
    folder_id: 'fld_123'
  }),
});
const data = await res.json();