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

import requests

resp = requests.post(
    'https://rediafile.com/cloud/api/v2/folder/delete',
    headers={'Authorization': f'Bearer {token}'},
    data={
        'folder_id': 'fld_123',
    },
)
print(resp.json())