GET - Get feature info

Purpose

This API retrieves the details of a particular feature in resource booking. The feature ID in the Request URL can be fetched using the Get all features API.

The data that can be fetched using the feature info API are feature name, its type, and whether it's shown/ hidden.

Request URL

https://calendar.zoho.com/api/v1/features/<featureId>

OAuth Scope

scope=ZohoCalendar.features.ALL

or

scope=ZohoCalendar.features.READ

 

ALL - Access all features.

READ - Gets details of a feature.

Path Parameters

  • featureIdlong, mandatory
    • It is a unique ID that's assigned to each feature that's available in resource booking. You can fetch the featureId using the Get all features API.

Sample Request

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

Sample Response

Copied{
   "feature_id":"1596623326304000001",
   "feature_type":1,
   "feature_name":"Test feature edit",
   "is_hidden":false
}