Chunked upload
|
POST api/2.0/files/{folderId}/upload/create_session
|
Creates a session to upload large files in multiple chunks 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 my section
|
POST api/2.0/files/@my/insert
|
Inserts a file specified in the request to the "My documents" section 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.
|
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 my 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.
|
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.
|