GET - Get event through search
Purpose
This API is used to get a particular event from a calendar through search.
Request URL
https://calendar.zoho.com/api/v1/calendars/<calendaruid>/search
OAuth Scope
scope=ZohoCalendar.search.ALL
(or)
scope=ZohoCalendar.search.READ
ALL - Full access to search
READ - Gets events through search
Request Parameters
Parameter | Type | Description |
---|---|---|
searchtext* | string | Search text which should be searched for in titles to retrieve the event details. |
calendaruid* | string | Calendar UID of the calendar in which the event details should be searched for. |
start* | string | Start "Date-Time" from which the events should be searched for and date format should be yyyyMMdd'T'HHmmss'Z'. |
end* | string | End "Date-Time" up to which the events should be searched for. (This should be within three months from the Start time) and date format should be yyyyMMdd'T'HHmmss'Z'. |
* - Mandatory parameter
Sample Request
Copiedhttp://calendar.zoho.com/api/v1/calendars/l9WWZCf_SJWcr3uIuBOq5g==/search
Sample Response
Copied{
"search": [
{
"uid": "a3abe218c5d34042afb7c884fcbcb682@zoho.com",
"timezone": "Asia/Calcutta",
"isallday": false,
"caluid": "l9WWZCf_SJWcr3uIuBOq5g==",
"title": "test colkor",
"type": 0,
"dateandtime": {
"timezone": "Asia/Calcutta",
"start": "20170826T083000+0530",
"end": "20170826T090000+0530"
}
}
]
}