🧪 API Sandbox

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

Edit File Metadata

Rename, reclassify, or relocate a file programmatically.

POST https://rediafile.com/cloud/api/v2/file/edit

Parameters

Auth token.
File id.
New file name.

Response

Select an endpoint and click "Send Request" to see a simulated response.
import requests

url = 'https://rediafile.com/cloud/api/v2/file/edit'
data = {
    'access_token': 'demo_token_abc123',
    'file_id': '10245',
    'name': 'renamed_report.pdf',
}
r = requests.post(url, data=data)
print(r.json())