Add wiki comment
|
POST api/2.0/community/wiki/comment
|
|
All comments
|
GET api/2.0/community/wiki/{page}/comment
|
Returns the list of all comments to the wiki page with the name specified in the request
|
Create comment
|
POST api/2.0/community/wiki/{page}/comment
|
Creates the comment to the selected wiki page with the content specified in the request
|
Create page
|
POST api/2.0/community/wiki
|
Creates a new wiki page with the page name and content specified in the request
|
Delete file
|
DELETE api/2.0/community/wiki/file/{name}
|
Deletes the files with the specified name from the wiki 'Files' section
|
Delete page
|
DELETE api/2.0/community/wiki/{name}
|
Deletes the wiki page with the name specified in the request
|
File
|
GET api/2.0/community/wiki/file/{name}
|
Returns the detailed file info about the file with the specified name in the wiki 'Files' section
|
Get comment preview
|
POST api/2.0/community/wiki/comment/preview
|
Get comment preview with the content specified in the request
|
History
|
GET api/2.0/community/wiki/{page}/story
|
Returns the list of history changes for the wiki page with the name specified in the request
|
Page
|
GET api/2.0/community/wiki/{name}
|
Return the detailed information about the wiki page with the name and version specified in the request
|
Pages
|
GET api/2.0/community/wiki
|
Returns the list of all pages in wiki or pages in wiki category specified in the request
|
Remove comment
|
DELETE api/2.0/community/wiki/comment/{commentid}
|
Remove comment with the id specified in the request
|
Search
|
GET api/2.0/community/wiki/search/byname/{name}
|
Returns the list of wiki pages with the name matching the search query specified in the request
|
Search
|
GET api/2.0/community/wiki/search/bycontent/{content}
|
Returns the list of wiki pages with the content matching the search query specified in the request
|
Update comment
|
PUT api/2.0/community/wiki/comment/{commentid}
|
Updates the comment to the selected wiki page with the comment content specified in the request
|
Update page
|
PUT api/2.0/community/wiki/{name}
|
Updates the wiki page with the name and content specified in the request
|
Upload files
|
POST api/2.0/community/wiki/file
|
Uploads the selected files to the wiki 'Files' section
|