🧪 API Sandbox

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

Create Folder

Create a new folder with optional privacy settings.

POST https://rediafile.com/cloud/api/v2/folder/create

Parameters

Auth token.
Account id.
Folder name.
public|unlisted|private.

Response

Select an endpoint and click "Send Request" to see a simulated response.
curl -X POST 'https://rediafile.com/cloud/api/v2/folder/create' \ \
  -d 'access_token=demo_token_abc123' \
  -d 'account_id=acc_demo_001' \
  -d 'folder_name=Client Deliverables' \
  -d 'privacy=private' \
  -H 'Accept: application/json'