GET api/2.0/community/bookmark/top/day
Returns a list of the bookmarks most popular for the current date with the bookmark titles, dates of creation and update, bookmark texts and authors.
This method doesn't have any parameters.
GET api/2.0/community/bookmark/top/day
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
application/json
{
"status": 0,
"response": [
{
"id": 11,
"title": "Google inc.",
"url": "http:\/\/www.google.com",
"thumbnail": "Url to thumbnail",
"created": "2023-01-27T05:35:45.3464516Z",
"updated": "2023-01-27T05:35:45.3464516Z",
"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>2023-01-27T05:35:45.3464516Z</created>
<updated>2023-01-27T05:35:45.3464516Z</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>