POST api/2.0/community/bookmark This function requires authentication

Description

Adds a bookmark with the title, description and tags specified in the request.

Parameters
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 with semicolon string some text
Example
             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"
             
Returns

Newly added bookmark

Example Response

application/json

{
  "status": 0,
  "response": {
    "Id": "11",
    "Url": "http:\\/\\/www.google.com",
    "Thumbnail": "Url to thumbnail",
    "Created": "2020-12-06T07:36:14.8181893Z",
    "Updated": "2020-12-06T07:36:14.8181893Z",
    "Description": "Google",
    "CreatedBy": {
      "Id": "00000000-0000-0000-0000-000000000000",
      "DisplayName": "Mike Zanyatski",
      "Title": "Manager",
      "AvatarSmall": "url to small avatar",
      "ProfileUrl": "\\/Products\\/People\\/Profile.aspx?user=administrator"
    },
    "Title": "Google inc."
  }
}

text/xml

<result>
  <status>0</status>
  <response>
    <Id>11</Id>
    <Url>http:\/\/www.google.com</Url>
    <Thumbnail>Url to thumbnail</Thumbnail>
    <Created>2020-12-06T07:36:14.8181893Z</Created>
    <Updated>2020-12-06T07:36:14.8181893Z</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>\/Products\/People\/Profile.aspx?user=administrator</ProfileUrl>
    </CreatedBy>
    <Title>Google inc.</Title>
  </response>
</result>