Skip to main content

GET - Get shared calendar details

Purpose

This API is used to get the calendar details of a calendar that has been shared with another user.

Request URL

https://calendar.zoho.com/api/v1/calendars/<CALENDAR_UID>/share

OAuth Scope

scope=ZohoCalendar.calendar.ALL

(or)

scope=ZohoCalendar.calendar.READ

ALL - Full access to calendars

READ - Gets details of a calendar

Parameters

  • calendaruidstring, mandatory

    Calendar unique identifier. It represents the calendaruid of the shared calendar for which the details should be fetched.

 

Sample Request

Copied https://calendar.zoho.com/api/v1/calendars/<CALENDAR_UID>/share

Sample Input

Copiedhttps://calendar.zoho.com/api/v1/calendars/c283d7193269481da1701f27604942b9/share

Sample Response

Copied{
    "share": [
        {
            "emailid": "user@domain.com",
            "privilege": "delegate"
        },
        {
            "zgid": "73369916",
            "privilege": "view"
        }
    ]
}