propfind
propfind
The PROPFIND method retrieves properties defined on the resource identified by the Request-URI
const [result] = await propfind({
url: 'https://caldav.icloud.com/',
props: [{ name: 'current-user-principal', namespace: DAVNamespace.DAV }],
headers: {
authorization: 'Basic x0C9uFWd9Vz8OwS0DEAtkAlj',
},
});
Arguments
url
required, request urlprops
required, ElementCompact props to finddepth
DAVDepthheaders
request headersheadersToExclude
array of keys of the headers you want to excludefetchOptions
options to pass to underlying fetch function
Return Value
array of DAVResponse
Behavior
send a prop find request, parse the response xml to an array of DAVResponse.