POST api/2.0/community/bookmark
Adds a bookmark with the title, description and tags specified in the request.
Name |
Description |
Type |
Example |
url
sent in body
|
Absolute URL to the bookmark page
|
string
|
some text
|
title
sent in body
|
Bookmark title
|
string
|
some text
|
description
sent in body
|
Bookmark description
|
string
|
some text
|
tags
sent in body
|
Bookmark tags separated by semicolon
|
string
|
some text
|
Sending data in application/json:
{
url:"https://www.teamlab.com",
title: "TeamLab",
description: "best site i've ever seen",
tags: "project management, collaboration"
}
Sending data in application/x-www-form-urlencoded
url="https://www.teamlab.com"&title="TeamLab"&description="best site i've ever seen"&tags="project management, collaboration"
application/json
{
"status": 0,
"response": {
"id": 11,
"title": "Google inc.",
"url": "http:\/\/www.google.com",
"thumbnail": "Url to thumbnail",
"created": "2022-07-03T14:23:34.9627988Z",
"updated": "2022-07-03T14:23:34.9627988Z",
"description": "Google",
"createdBy": {
"id": "00000000-0000-0000-0000-000000000000",
"displayName": "Mike Zanyatski",
"title": "Manager",
"avatarSmall": "url to small avatar",
"profileUrl": ""
}
}
}
text/xml
<result>
<status>0</status>
<response>
<id>11</id>
<title>Google inc.</title>
<url>http://www.google.com</url>
<thumbnail>Url to thumbnail</thumbnail>
<created>2022-07-03T14:23:34.9627988Z</created>
<updated>2022-07-03T14:23:34.9627988Z</updated>
<description>Google</description>
<createdBy>
<id>00000000-0000-0000-0000-000000000000</id>
<displayName>Mike Zanyatski</displayName>
<title>Manager</title>
<avatarSmall>url to small avatar</avatarSmall>
<profileUrl></profileUrl>
</createdBy>
</response>
</result>