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
ALL - Full access to events
READ - Get events
Request Parameters
- recurrenceid string
- This parameter is to retrieve the specific instance of a recurring event.
- It is formattted in ICS format as:
- 'yyyyMMdd'T'hhmmss'Z'' for normal events.
- 'yyyyMMdd' for all-day events.
- This parameter can be retrieved from Get event by instance API.
- This parameter is mandatory for break instances only.
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=="
}
]
}