Reputation: 190
I am using the O365 API for Calendar, which I understand is currently in preview. When querying the /Calendar/Events endpoints, all created events are returned, but does not seem to be returning the correct "Recurrence" info. I made several events in O365 that recur every workday with no end date, but the API does not seem to return this info.
Is there a workaround for this to get meeting recurring info?
Upvotes: 0
Views: 404
Reputation: 266
Photohunts, To see the recurrence information, you will need to navigate to the specific Event. For example:
https://outlook.office365.com/EWS/OData/Me/Events('AAMkADU5OWRjMWIwLThmNTMtNGM0NC1iM2UwLWEzODE3NjZlOTAwYQBGAAAAAABhjWDlvPXlRIwLplz9WovhBwAGqPuO3lPFTZQQq7HNVCBIAAAB3pf9AABBCWIB9tA-TaTLczumGiYyAACHmWVwAAA=')
you will see information like this below:
Recurrence: {
Pattern: {
Type: "Weekly",
Interval: 1,
Month: 0,
Index: "First",
FirstDayOfWeek: "Sunday",
DayOfMonth: 0,
DaysOfWeek: [
"Thursday"
]
},
Range: {
Type: "EndDate",
StartDate: "2014-07-03T00:00:00-07:00",
EndDate: "2014-12-31T00:00:00-08:00",
NumberOfOccurrences: 0
}
}
Upvotes: 1