POST - Add a Bookmark

Purpose

This API is used to add a bookmark.

Request URL 

Group Bookmark

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

Personal Bookmark

https://mail.zoho.com/api/links/me

Request Parameters

ParameterData TypeDescription
GroupID* Long The unique identifier used for groups in the organization

* - Mandatory parameters

Request Body (JSON Object)

ParameterData TypeDescription
link*StringThe link that you want to add as a bookmark
titleStringThe title of the bookmark that is being added
summaryStringThe summary of the bookmark that is being added
collectionIdLongThe unique ID of collection you want to add the bookmark to

* - Mandatory parameters

Response Codes

Please refer Response Codes.

Sample Request

Copied{
  "link": "www.zoho.com",
  "title": "one suite to rule your business",
  "summary": "All you business software in one place",
  "collectionId": "1234567898"
}

Sample Response

Copied{
  "status": {
    "code": 200,
    "description": "success"
  },
  "data": {
    "entityId": "2866449000001798007",
    "entityURI": "http://mail.zoho.com/api/links/groups/36902612/2866449000001798007"
  }
}