Add bookmark
|
POST api/2.0/community/bookmark
|
Adds a bookmark with a specified title, description and tags
|
Add bookmark comment
|
POST api/2.0/community/bookmark/comment
|
|
Add comment
|
POST api/2.0/community/bookmark/{id}/comment
|
Adds a comment to the bookmark with the specified ID. The parent bookmark ID can be also specified if needed.
|
Added by me
|
GET api/2.0/community/bookmark/@self
|
Returns the list of all bookmarks for the current user with the bookmark titles, date of creation and update, bookmark text and author
|
All bookmarks
|
GET api/2.0/community/bookmark
|
Returns the list of all bookmarks on the portal with the bookmark titles, date of creation and update, bookmark text and author
|
All tags
|
GET api/2.0/community/bookmark/tag
|
Returns a list of all tags used for bookmarks with the number showing the tag usage
|
By tag
|
GET api/2.0/community/bookmark/bytag
|
Returns the list of all bookmarks marked by the tag specified with the bookmark titles, date of creation and update, bookmark text and author
|
Get bookmarks by ID
|
GET api/2.0/community/bookmark/{id}
|
Returns a detailed information on the bookmark with the specified ID
|
Get comment preview
|
POST api/2.0/community/bookmark/comment/preview
|
Get comment preview with the content specified in the request
|
Get comments
|
GET api/2.0/community/bookmark/{id}/comment
|
Returns the list of all comments to the bookmark with the specified ID
|
My favorite
|
GET api/2.0/community/bookmark/@favs
|
Returns the list of favorite bookmarks for the current user with the bookmark titles, date of creation and update, bookmark text and author
|
Recently added
|
GET api/2.0/community/bookmark/top/recent
|
Returns the list of recenty added bookmarks with the bookmark titles, date of creation and update, bookmark text and author
|
Remove comment
|
DELETE api/2.0/community/bookmark/comment/{commentid}
|
Remove comment with the id specified in the request
|
Removes bookmark
|
DELETE api/2.0/community/bookmark/{id}
|
Removes bookmark
|
Removes bookmark from favourite
|
DELETE api/2.0/community/bookmark/@favs/{id}
|
Removes bookmark from favourite. If after removing user bookmark raiting of this bookmark is 0, the bookmark will be removed completely.
|
Search
|
GET api/2.0/community/bookmark/@search/{query}
|
Returns a list of bookmarks matching the search query with the bookmark title, date of creation and update, bookmark description and author
|
Top of day
|
GET api/2.0/community/bookmark/top/day
|
Returns the list of the bookmarks most popular on the current date with the bookmark titles, date of creation and update, bookmark text and author
|
Top of month
|
GET api/2.0/community/bookmark/top/month
|
Returns the list of the bookmarks most popular in the current month with the bookmark titles, date of creation and update, bookmark text and author
|
Top of week
|
GET api/2.0/community/bookmark/top/week
|
Returns the list of the bookmarks most popular on the current week with the bookmark titles, date of creation and update, bookmark text and author
|
Top of year
|
GET api/2.0/community/bookmark/top/year
|
Returns the list of the bookmarks most popular in the current year with the bookmark titles, date of creation and update, bookmark text and author
|
Update bookmark comment
|
PUT api/2.0/community/bookmark/comment/{commentid}
|
|