You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 11, 2024. It is now read-only.
Beta API has isShared filed which could be used to figure out if the calendar has been shared and decide if we should make another request to get the permissions
According to docs, we can fetch calendar permissions via GET /users/{id}/calendar/calendarPermissions/{id}, but giving a 500 error when trying to fetch it. The 3rd option to fetch by item id was also giving an error.
{
"error": {
"code": "ErrorInternalServerError",
"message": "An internal server error occurred. The operation failed."
}
}
We can however get user's primary calendar permission(just the primary cal) via GET https://graph.microsoft.com/:version/users/:user/calendar/calendarPermissions
Calendars have
calendarPermission
as a relation and we are not currently backing up that information.Beta API has
isShared
filed which could be used to figure out if the calendar has been shared and decide if we should make another request to get the permissionsAccording to docs, we can fetch calendar permissions via
GET /users/{id}/calendar/calendarPermissions/{id}
, but giving a 500 error when trying to fetch it. The 3rd option to fetch by item id was also giving an error.We can however get user's primary calendar permission(just the primary cal) via
GET https://graph.microsoft.com/:version/users/:user/calendar/calendarPermissions
The text was updated successfully, but these errors were encountered: