microsoft-graph-calendar

Calendar Id randomly changed

烈酒焚心 提交于 2021-02-20 03:46:45
问题 Whats the reason that make a calendar change it's id when using microsoft graph ??? This happened today for one of our clients who's been using his main Calendar for over 2 years, and suddenly today, the id is changed and we are unable to add any event since we have the 'old' id Endpoint being called: /me/calendars/AAMkAGFmMzAxNmRkLTg4YTEtNDNhZS1iYjExLWE1OThlYThlNTRmOQBGAAAAAACxNL6zUoo_Qr9AY8vFoIfmBwBstbpyrelbSJu1keAu6bMkAAAAAAEGAABstbpyrelbSJu1keAu6bMkAAAAAFB8AAA=/events Error returned: {

https://graph.microsoft.com/v1.0/places/microsoft.graph.room Api is not giving updated data

拜拜、爱过 提交于 2021-02-10 14:56:06
问题 I am Using Microsoft Graph to fetch list of rooms available for a tenant. As per Documentation, List Palace Api (https://docs.microsoft.com/en-us/graph/api/place-list?view=graph-rest-1.0&tabs=http) should be used for this. Now, I am facing problem with getting updated data using List Places api. I have added few rooms to the tenant but those are not reflected as part of response for List places api. However, findRooms api which is in Beta gives the updated response. https://graph.microsoft

https://graph.microsoft.com/v1.0/places/microsoft.graph.room Api is not giving updated data

此生再无相见时 提交于 2021-02-10 14:55:10
问题 I am Using Microsoft Graph to fetch list of rooms available for a tenant. As per Documentation, List Palace Api (https://docs.microsoft.com/en-us/graph/api/place-list?view=graph-rest-1.0&tabs=http) should be used for this. Now, I am facing problem with getting updated data using List Places api. I have added few rooms to the tenant but those are not reflected as part of response for List places api. However, findRooms api which is in Beta gives the updated response. https://graph.microsoft

MS Graph API return errors for Hybrid integration only on some IPs

不打扰是莪最后的温柔 提交于 2021-02-08 03:27:26
问题 We have an application that uses MS Graph API to integrate with our customer's email/calendar. One of the customers (Customer A) with the Hybrid setup, have reported issues. All the users suddenly got email integration not working. We have performed a couple of testing calls (endpoint /me/sendMail) to MS Graph API using our production app credential and different environments (local, dev cloud AWS, staging cloud GCP, prod cloud GCP) and valid user tokens. Here are the results and strange

MS Graph API return errors for Hybrid integration only on some IPs

╄→гoц情女王★ 提交于 2021-02-08 03:27:15
问题 We have an application that uses MS Graph API to integrate with our customer's email/calendar. One of the customers (Customer A) with the Hybrid setup, have reported issues. All the users suddenly got email integration not working. We have performed a couple of testing calls (endpoint /me/sendMail) to MS Graph API using our production app credential and different environments (local, dev cloud AWS, staging cloud GCP, prod cloud GCP) and valid user tokens. Here are the results and strange

MS Graph API return errors for Hybrid integration only on some IPs

主宰稳场 提交于 2021-02-08 03:27:09
问题 We have an application that uses MS Graph API to integrate with our customer's email/calendar. One of the customers (Customer A) with the Hybrid setup, have reported issues. All the users suddenly got email integration not working. We have performed a couple of testing calls (endpoint /me/sendMail) to MS Graph API using our production app credential and different environments (local, dev cloud AWS, staging cloud GCP, prod cloud GCP) and valid user tokens. Here are the results and strange

Can't create an event with extended data

喜夏-厌秋 提交于 2021-01-29 20:40:37
问题 I am trying to create a calendar event with extended data using Microsoft Graph API.(actually, I am trying to converting the existing open extension to schema extension since I couldn't filter the non-id extended value of the open extension.) Before my try, I have already created my schema extension successfully and creating a calendar event with the schema extension responses an error code "BadRequest" and message "Requests must contain extension changes exclusively". I tried to do this by

How to subscribe calendar event if calendar is given delegated permission using ms-graph api

守給你的承諾、 提交于 2021-01-29 14:32:22
问题 Change notifications of Outlook events can be created by subscribing following way using ms graph api . { "changeType": "created,updated,deleted", "notificationUrl": "notificationUrl", "resource": "Users/xxx169f-xxx-xxxx-afd2-936c51e6xxxx/Events", "expirationDateTime":"2016-11-20T18:23:45.9356913Z", "clientState": "secretClientValue" } but how do i get notifications similar way for calendars that have given delegated permission ? 回答1: You can validate that you can access the shared calendar

How to fix differences on call Microsoft.Graph.Calendar between .NET Core and .NET Framework

旧街凉风 提交于 2021-01-29 05:12:25
问题 I have a strange problem with conversion from .NET Core 3.1 to .NET Framework 4.7.2. It should be compatible in base area, but not always. var calendars = _graphClient.Users[$"{userId}"].Calendars.Request().GetAsync().Result; This function work fine in .Net Core, but not in .Net Framework makes error with following exception: NotSupportedException: The collection type 'Microsoft.Graph.IUserCalendarsCollectionPage' is abstract, an interface, or is read only, and could not be instantiated and

Microsoft Graph API getSchedule filter by calendars

落花浮王杯 提交于 2021-01-07 02:49:19
问题 I'm using microsoft graph API and want to get user's busy slots for particular calendars, so there is an end point /getSchedule which takes body like : { "schedules": ["adelev@contoso.onmicrosoft.com", "meganb@contoso.onmicrosoft.com"], "startTime": { "dateTime": "2019-03-15T09:00:00", "timeZone": "Pacific Standard Time" }, "endTime": { "dateTime": "2019-03-15T18:00:00", "timeZone": "Pacific Standard Time" }, "availabilityViewInterval": "60" } In this endpoint I want to filter by calendars, I