GET - Details of a Bookmark

Purpose

This API is used to retrieve details of a single bookmark

Request URL 

Group Bookmark

https://mail.zoho.com/api/links/groups/<groupid>/<entityId>

Personal Bookmark

https://mail.zoho.com/api/links/me/<entityId>

Request Parameters

ParameterData TypeAllowed ValuesDescription
GroupID*Long  The unique identifier used for groups in the organization
entityID*Long The unique identifier used for the bookmark
fieldsString
  • title
  • summary
  • link
  • linkMetaInfo
  • collectionName

(separated by comma)

The details about the bookmark that you want to retrieve.
(If the field is not mentioned, all the details will be retrieved.)

* - Mandatory parameters

Response Codes

Please refer Response Codes.

Sample Request

Group Bookmark

Copiedhttps://mail.zoho.com/api/links/groups/53658048/2866449000001814006?fields=title,summary

Personal Bookmark

Copiedhttps://mail.zoho.com/api/links/me/2866449000001814006?fields=title,summary

Sample Response

Copied{
  "status": {
    "code": 200,
    "description": "success"
  },
  "data": {
    "namespaceId": "36902612",
    "entityId": "2866449000001814006",
    "collectionId": "2866449000001749004",
    "collectionName": "Reference",
    "summary": "Pointers to write a good blog",
    "link": "https://blog.hubspot.com/marketing/how-to-start-a-blog",
    "linkMetaInfo": {
      "linkTitle": "https://blog.hubspot.com/marketing/how-to-start-a-blog",
      "linkDescription": "https://blog.hubspot.com/marketing/how-to-start-a-blog"
    },
    "title": "How to start a blog",
    "isFavorite": "false"
  }
}