Switch language

Sandbox

Explore every endpoint with simulated responses — no credentials required.

POST /file/copy

Copy File

Create a copy of a file in a specified folder.

File ID

Destination folder ID

Reset form

Click "Send request" to see a simulated response.

Code Examples

import requests

resp = requests.post(
    'https://rediafile.com/cloud/api/v2/file/copy',
    headers={'Authorization': f'Bearer {token}'},
    data={
        'file_id': 'file_84729',
        'folder_id': 'fld_456',
    },
)
print(resp.json())