GET - Get all features

Purpose

This API retrieves the details of all the features in resource booking. The details that can be fetched using this API are feature IDs and names, their types, and whether they are shown/ hidden.

Request URL

https://calendar.zoho.com/api/v1/features

OAuth Scope

scope=ZohoCalendar.features.ALL

or

scope=ZohoCalendar.features.READ

 

ALL - Access all features.

READ - Gets details of all features.

Sample Request

Copiedhttps://calendar.zoho.com/api/v1/features

Sample Response

Copied[
   {
      "feature_id":"1596623326304000001",
      "feature_type":1,
      "feature_name":"Test feature edit",
      "is_hidden":false
   },
   {
      "feature_id":"1587118410664000003",
      "feature_type":0,
      "feature_name":"AC",
      "is_hidden":false
   }
]