Create a folder
|
POST api/2.0/files/folder/{folderId}
|
Creates a new folder with the title specified in the request. The parent folder ID can be also specified.
|
Create a folder structure
|
POST api/2.0/files/folders/{folderId}
|
Creates a new folder structure specified in the request in a folder with a specific ID.
|
Delete a folder
|
DELETE api/2.0/files/folder/{folderId}
|
Deletes a folder with the ID specified in the request.
|
Get a folder by ID
|
GET api/2.0/files/{folderId}
|
Returns the detailed list of files and folders located in the folder with the ID specified in the request.
|
Get filtered sections
|
GET api/2.0/files/@root
|
Returns all the sections matching the parameters specified in the request.
|
Get the "Common" section
|
GET api/2.0/files/@common
|
Returns the detailed list of files and folders located in the "Common" section.
|
Get the "Favorites" section
|
GET api/2.0/files/@favorites
|
Returns the detailed list of files and folders located in the "Favorites" section.
|
Get the "In projects" section
|
GET api/2.0/files/@projects
|
Returns the detailed list of files and folders located in the "In projects" section.
|
Get the "My documents" section
|
GET api/2.0/files/@my
|
Returns the detailed list of files and folders located in the "My documents" section.
|
Get the "Recent" section
|
GET api/2.0/files/@recent
|
Returns the detailed list of files located in the "Recent" section.
|
Get the "Shared with me" section
|
GET api/2.0/files/@share
|
Returns the detailed list of files and folders located in the "Shared with me" section.
|
Get the "Templates" section
|
GET api/2.0/files/@templates
|
Returns the detailed list of files located in the "Templates" section.
|
Get the "Trash" section
|
GET api/2.0/files/@trash
|
Returns the detailed list of files and folders located in the "Trash" section.
|
Get the folder information
|
GET api/2.0/files/folder/{folderId}
|
Returns the detailed information about a folder with the ID specified in the request.
|
Get the folder path
|
GET api/2.0/files/folder/{folderId}/path
|
Returns a path to the folder with the ID specified in the request.
|
Insert a file
|
POST api/2.0/files/{folderId}/insert
|
Inserts a file specified in the request to the selected folder by single file uploading.
|
Insert a file to the "Common" section
|
POST api/2.0/files/@common/insert
|
Inserts a file specified in the request to the "Common" section by single file uploading.
|
Insert a file to the "My documents" section
|
POST api/2.0/files/@my/insert
|
Inserts a file specified in the request to the "My documents" section by single file uploading.
|
Rename a folder
|
PUT api/2.0/files/folder/{folderId}
|
Renames the selected folder with a new title specified in the request.
|
Upload a file
|
POST api/2.0/files/{folderId}/upload
|
Uploads a file specified in the request to the selected folder by single file uploading or standart multipart/form-data method.
|
Upload a file to the "Common" section
|
POST api/2.0/files/@common/upload
|
Uploads a file specified in the request to the "Common" section by single file uploading or standart multipart/form-data method.
|
Upload a file to the "My documents" section
|
POST api/2.0/files/@my/upload
|
Uploads a file specified in the request to the "My documents" section by single file uploading or standart multipart/form-data method.
|