Add favorite files and folders
|
POST api/2.0/files/favorites
|
Adds files and folders with the IDs specified in the request to the favorite list.
|
Add template files
|
POST api/2.0/files/templates
|
Adds files with the IDs specified in the request to the template list.
|
Change history
|
PUT api/2.0/files/file/{fileId}/history
|
Changes version history of a file with the ID specified in the request.
|
Copy file
|
POST api/2.0/files/file/{fileId}/copyas
|
Copies (and converts, if possible) an existing file to a new file.
|
Create a file
|
POST api/2.0/files/{folderId}/file
|
Creates a new file in the specified folder with the title specified in the request.
|
Create a file in my section
|
POST api/2.0/files/@my/file
|
Creates a new file in the "My documents" section with the title specified in the request.
|
Delete favorite files and folders
|
DELETE api/2.0/files/favorites
|
Removes files and folders with the IDs specified in the request from the favorite list.
|
Delete template files
|
DELETE api/2.0/files/templates
|
Removes files with the IDs specified in the request from the template list.
|
Get file download link
|
GET api/2.0/files/file/{fileId}/presigneduri
|
Returns a link to download a file with the ID specified in the request.
|
Get file properties
|
GET api/2.0/files/{fileId}/properties
|
Returns file properties of the specified file.
|
Get file versions
|
GET api/2.0/files/file/{fileId}/history
|
Returns the detailed information about all the available file versions with the ID specified in the request.
|
Get the file information
|
GET api/2.0/files/file/{fileId}
|
Returns the detailed information about a file with the ID specified in the request.
|
Open the editor
|
GET api/2.0/files/file/{fileId}/openedit
|
Returns the initialization configuration to open the editor.
|
Save editing
|
PUT api/2.0/files/file/{fileId}/saveediting
|
Saves editing of a file with the ID specified in the request.
|
Save file properties to a file
|
PUT api/2.0/files/{fileId}/properties
|
Saves file properties to the specified file.
|
Save file properties to files
|
PUT api/2.0/files/batch/properties
|
Saves file properties to the specified files.
|
Start editing
|
POST api/2.0/files/file/{fileId}/startedit
|
Informs about opening a file with the ID specified in the request for editing locking it from deletion or movement (this method is called by the mobile editors).
|
Track editing
|
GET api/2.0/files/file/{fileId}/trackeditfile
|
Tracks file changes when editing.
|
Update a file
|
PUT api/2.0/files/file/{fileId}
|
Updates the information of the selected file with the parameters specified in the request.
|
Update file content
|
PUT api/2.0/files/{fileId}/update
|
Updates the content of a file with the ID specified in the request.
|