POST api/2.0/community/wiki/file
Uploads the selected files to the wiki 'Files' section
Name |
Description |
Type |
Example |
files
sent in body
|
List of files to upload
|
Files for adding using multipart/form-data
collection
|
N/A
|
POST api/2.0/community/wiki/file
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
{
"files": []
}
application/json
{
"status": 0,
"response": [
{
"name": "File name",
"updatedBy": {
"id": "00000000-0000-0000-0000-000000000000",
"displayName": "Mike Zanyatski",
"title": "Manager",
"avatarSmall": "url to small avatar",
"profileUrl": ""
},
"updated": "2021-03-07T23:35:28.5494065Z",
"location": "4\\46\\File name"
}
]
}
text/xml
<result>
<status>0</status>
<response>
<name>File name</name>
<updatedBy>
<id>00000000-0000-0000-0000-000000000000</id>
<displayName>Mike Zanyatski</displayName>
<title>Manager</title>
<avatarSmall>url to small avatar</avatarSmall>
<profileUrl></profileUrl>
</updatedBy>
<updated>2021-03-07T23:35:28.5494065Z</updated>
<location>4\46\File name</location>
</response>
</result>