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.
|
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 common section
|
GET api/2.0/files/@common
|
Returns the detailed list of files and folders located in the "Common" section.
|
Get favorite section
|
GET api/2.0/files/@favorites
|
Returns the detailed list of files located in the "Favorites" section.
|
Get my section
|
GET api/2.0/files/@my
|
Returns the detailed list of files and folders located in the "My documents" section.
|
Get project section
|
GET api/2.0/files/@projects
|
Returns the detailed list of files and folders located in the "Projects" section.
|
Get recent section
|
GET api/2.0/files/@recent
|
Returns the detailed list of files located in the "Recent" section.
|
Get sections
|
GET api/2.0/files/@root
|
Returns all the sections matching the parameters specified in the request.
|
Get shared section
|
GET api/2.0/files/@share
|
Returns the detailed list of files and folders located in the "Shared with Me" section.
|
Get template section
|
GET api/2.0/files/@templates
|
Returns the detailed list of files located in the "Templates" 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.
|
Get trash section
|
GET api/2.0/files/@trash
|
Returns the detailed list of files and folders located in the "Trash" section.
|
Rename a folder
|
PUT api/2.0/files/folder/{folderId}
|
Renames the selected folder with a new title specified in the request.
|