GET - Get event details

Purpose

This API is used to get the event details of a specific event in the user's calendar.

Request URL

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

OAuth Scope

scope=ZohoCalendar.event.ALL

(or)

scope=ZohoCalendar.event.READ

A​LL - Full access to events

READ - Get events

Request Parameters

  • recurrenceidboolean, mandatory
    • recurrence id in ics format (yyyyMMdd'T'hhmmss'Z' for normal events, yyyyMMdd for allday events) [For break instances only]
    • The recurrence ID parameter can be retrieved from Get event details by Range API with byinstance parameter set to True.

Sample Request

Copiedhttps://calendar.zoho.com/api/v1/calendars/l9WWZCf_SJWcr3uIuBOq5g==/events/08cfc73476024a75a957c0524691a250@zoho.com

Sample Response

Copied{
    "events": [
        {
            "reminders": [
                {
                    "minutes": "-10",
                    "action": "popup"
                },
                {
                    "minutes": "+5",
                    "action": "email"
                }
            ],
            "enable_eventmanagement": false,
            "role": "organizer",
            "group_attendees": {
                "11523030": [
                    {
                        "email": "zaheed.shariff@zohocorp.com",
                        "status": "TENTATIVE"
                    }
                ]
            },
            "calid": "1657000000002003",
            "description": "Test Description",
            "title": "Group Invite",
            "calendar_alarm": false,
            "duration": 9900000,
            "uid": "08cfc73476024a75a957c0524691a250@zoho.com",
            "createdby": "ezilkannan.r@zohocorp.com",
            "alarm": [
                {
                    "action": "popup",
                    "trigger": -600000
                },
                {
                    "action": "email",
                    "trigger": 300000
                }
            ],
            "end": "20170722T174500",
            "dateandtime": {
                "timezone": "Asia/Calcutta",
                "start": "20170722T150000+0530",
                "end": "20170722T174500+0530"
            },
            "lastmodifiedtime": "20170721T044131Z",
            "isprivate": false,
            "attendees": [
                {
                    "email": "suganthi.kalyan@zohocorp.com",
                    "status": "NEEDS-ACTION"
                },
                {
                    "email": "ezilkannan.r@zohocorp.com",
                    "status": "ACCEPTED"
                }
            ],
            "start": "20170722T150000",
            "createdtime": "20170721T04Z",
            "group_list": [
                {
                    "name": "test group local",
                    "id": 11523030
                }
            ],
            "organizer": "ezilkannan.r@zohocorp.com",
            "isallday": false,
            "modifiedby": "ezilkannan.r@zohocorp.com",
            "etag": 1500612091546,
            "location": "Estancia",
            "multiday": false,
            "caluid": "l9WWZCf_SJWcr3uIuBOq5g=="
        }
    ]
}