• Post category:Закладки
  • Запись изменена:28.10.2022

POST api/2.0/community/bookmark

Для этой функции требуется аутентификация. 

Описание
Добавляет закладку с названием, описанием и тегами, указанными в запросе.

Параметры

НазваниеОписаниеТипПример
url

sent in body
Абсолютный URL-адрес закладкистроковыйтекст
title

sent in body
Название закладкистроковыйтекст
description

sent in body
Описание закладкистроковыйтекст
tags

sent in body
Закладки с тегам разделенные точкой с запятойстроковыйтекст
Пример
             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-10-03T19:03:27.4821749Z",
    "updated": "2022-10-03T19:03:27.4821749Z",
    "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-10-03T19:03:27.4821749Z</created>
    <updated>2022-10-03T19:03:27.4821749Z</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>