Switch language

Sandbox

Explore every endpoint with simulated responses — no credentials required.

POST /file/delete

Delete File

Permanently delete a file.

File 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/file/delete',
    headers={'Authorization': f'Bearer {token}'},
    data={
        'file_id': 'file_84729',
    },
)
print(resp.json())