calendarMultiGet
calendarMultiGet
calendarMultiGet is used to retrieve specific calendar object resources from within a collection.
If the Request-URI is a calendar object resource. This method is similar to the calendarQuery, except that it takes a list of calendar object urls, instead of a filter, to determine which calendar objects to return.
// fetch 2 specific objects from one calendar
const calendarObjects = await calendarMultiGet({
url: 'https://caldav.icloud.com/1234567/calendars/personal/',
props: [
{ name: 'getetag', namespace: DAVNamespace.DAV },
{ name: 'calendar-data', namespace: DAVNamespace.CALDAV },
],
objectUrls: [
'https://caldav.icloud.com/1234567/calendars/personal/1.ics',
'https://caldav.icloud.com/1234567/calendars/personal/2.ics',
],
depth: '1',
headers: {
authorization: 'Basic x0C9ueWd9Vz8OwS0DEAtkAlj',
},
});
Arguments
url
required, url of CALDAV serverobjectUrls
required, urls of calendar object to getprops
DAVProp the client needsfilters
DAVFilter the filter on the calendar objectsdepth
required, DAVDepth of the requesttimezone
timezone of the calendarheaders
request headers
Return Value
array of DAVCalendarObject
Behavior
send caldav:calendar-multiget REPORT request and parse the response xml to extract an array of DAVCalendarObject data.