🧪 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.
curl -X POST 'https://rediafile.com/cloud/api/v2/file/edit' \ \
  -d 'access_token=demo_token_abc123' \
  -d 'file_id=10245' \
  -d 'name=renamed_report.pdf' \
  -H 'Accept: application/json'