GET api/2.0/community/wiki
Returns the list of all pages in wiki or pages in wiki category specified in the request
Name |
Description |
Type |
Example |
category
sent in url
|
Category name
|
string
|
some text
|
GET api/2.0/community/wiki?category=some+text
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
application/json
{
"status": 0,
"response": [
{
"name": "Page name",
"content": "Page content",
"updatedBy": {
"id": "00000000-0000-0000-0000-000000000000",
"displayName": "Mike Zanyatski",
"title": "Manager",
"avatarSmall": "url to small avatar",
"profileUrl": ""
},
"updated": "2021-03-03T16:49:54.0036290Z"
}
]
}
text/xml
<result>
<status>0</status>
<response>
<name>Page name</name>
<content>Page content</content>
<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-03T16:49:54.0036290Z</updated>
</response>
</result>