I've been using the node-outlook wrapper for the Outlook Calendar REST API. Currently, when I make a request, I can retrieve one-time events and a series master for recurring events (but not individual events that are apart of the recurring series). How do I modify my query parameters to retrieve a list of events and single events which are apart of a recurring series?
const queryParams = {
'$select': 'Subject,Start,End,Location,Type',
'$orderby': 'Start/DateTime desc',
'$filter': "Start/DateTime ge '" + start_utc + "' and Start/DateTime le '" + end_utc + "'"
};
My goal is to make 1 API request that retrieves all events within the upcoming 30 days.
via paris
No comments:
Post a Comment