calendarQuery
calendarQuery
calendarQuery performs a search for all calendar object resources that match a specified filter.
The response of this report will contain all the WebDAV properties and calendar object resource data specified in the request.
In the case of the calendarData
element, one can explicitly specify the calendar components and properties that should be returned in the calendar object resource data that matches the filter.
// fetch all objects of the calendar
const results = await calendarQuery({
url: 'https://caldav.icloud.com/1234567/calendars/personal/',
props: [{ name: 'getetag', namespace: DAVNamespace.DAV }],
filters: [
{
type: 'comp-filter',
attributes: { name: 'VCALENDAR' },
},
],
depth: '1',
headers: {
authorization: 'Basic x0C9uFWd9Vz8OwS0DEAtkAlj',
},
});
Arguments
url
required, request target urlprops
required, array of DAVPropfilters
array of DAVFilterdepth
DAVDepthtimezone
iana timezone name, likeAmerica/Los_Angeles
headers
request headers
Return Value
array of DAVResponse
Behavior
send a calendar-query REPORT request, after server applies the filters and parse the response xml to an array of DAVResponse.