PUT api/2.0/files/fileops/bulkdownload
Starts the download process of files and folders with the IDs specified in the request.
Name |
Description |
Type |
Example |
FileConvertIds
sent in body
|
List of file IDs which will be converted
|
System.Collections.Generic.IEnumerable{ASC.Api.Collections.ItemKeyValuePair{System.Text.Json.JsonElement
|
|
PUT api/2.0/files/fileops/bulkdownload
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
application/json
{
"status": 0,
"response": [
{
"Id": "some text",
"Progress": 1234,
"Error": "some text",
"Processed": "some text",
"Finished": true,
"Url": "some text"
}
]
}
text/xml
<result>
<status>0</status>
<response>
<Id>some text</Id>
<Progress>1234</Progress>
<Error>some text</Error>
<Processed>some text</Processed>
<Finished>True</Finished>
<Url>some text</Url>
</response>
</result>