POST api/2.0/community/bookmark
Adds a bookmark with a specified title, description and tags
Name |
Description |
Type |
Example |
url
sent in body
|
url of bookmarking page
|
string
|
some text
|
title
sent in body
|
title to show
|
string
|
some text
|
description
sent in body
|
description
|
string
|
some text
|
tags
sent in body
|
tags. separated by semicolon
|
string
|
some text
|
Sending data in application/json:
{
url:"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="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": "2021-03-02T06:12:00.5460375Z",
"updated": "2021-03-02T06:12:00.5460375Z",
"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>2021-03-02T06:12:00.5460375Z</created>
<updated>2021-03-02T06:12:00.5460375Z</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>