GET api/2.0/community/wiki/file/{name}
Returns the detailed information about a file with the name specified in the request from the wiki 'Files' section.
Name |
Description |
Type |
Example |
name
sent in url
|
File name
|
string
|
some text
|
GET api/2.0/community/wiki/file/some+text
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
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": "2022-08-11T22:56:18.7738110Z",
"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>2022-08-11T22:56:18.7738110Z</updated>
<location>4\46\File name</location>
</response>
</result>