PUT - Edit Bookmark collection

Purpose

This API is used to edit an existing bookmark collection

Request URL 

Group Bookmark

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

Personal Bookmark

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

Request Parameters

ParameterData TypeDescription
GroupID*LongThe unique identifier used for groups in the organization
CollectionID*LongThe unique identifier used for each bookmark collection
collectionName*String The name you wish to give the collection that is edited

* - Mandatory parameters

Response Codes

Please refer Response Codes.

 

Group Bookmark

Sample Request URL

Copiedhttps://mail.zoho.com/api/links/groups/53658048/collections/752225000027750005?collectionName=Webpage

Sample Response

Copied{
  "status": {
    "code": 200,
    "description": "success"
  },
  "data": {
    "collectionId": "752225000027750005",
    "collectionName": "Webpage"
  }
}

Personal Bookmark

Sample Request URL

Copiedhttps://mail.zoho.com/api/links/me/collections/752225000027750005?collectionName=Reference

Sample Response

Copied{
  "status": {
    "code": 200,
    "description": "success"
  },
  "data": {
    "collectionId": "752225000027750005",
    "collectionName": "Reference"
  }
}