Forum Discussion
Terry Hagan
Oct 10, 2016Iron Contributor
Using Microsoft Graph to access Office 365 Group Calendar Events
I recently used the Graph API to access the calendar and events from a public Office 365 Group. However, it has stopped working and I have now tried numerous ways to get it working again to no avail,...
Saurabh Tripathi
Jan 23, 2017Copper Contributor
Hi Terry,
Can you please help me if you have found a solution for this already. Groups are working fine but I get 'ErrorNonExistentMailbox' error when I try to get events using below code,
let url = `https://graph.microsoft.com/v1.0/groups/${groupid}/events`;
jQuery.ajax({
url: url,
type: 'GET',
headers: {
'Authorization': 'Bearer ' + token
},
success: function(data) {
console.log(data);
},
error: function(err) {
console.log(err);
}
});