microsoft-graph-teams

Microsoft Graph API getSchedule filter by calendars

余生长醉 提交于 2021-01-07 02:47:12
问题 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

Microsoft Graph API getSchedule filter by calendars

守給你的承諾、 提交于 2021-01-07 02:46:33
问题 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

Unable to post inline images along with the message in Microsoft Teams via Microsoft Graph API using C#

纵然是瞬间 提交于 2021-01-07 02:42:51
问题 I have been trying to post the images along with the message in Microsoft Teams via MS Graph API using C# but unable to do so. Below is the code I have tried: string userName = ConfigurationManager.AppSettings["UserName"]; string password = ConfigurationManager.AppSettings["Password"]; System.Security.SecureString passWordSecureString = new System.Security.SecureString(); foreach (char c in password.ToCharArray()) passWordSecureString.AppendChar(c); var clientId = "xxxxxxxx-xxxx-xxxx-xxxx

MS Graph API Error: 'Failed to execute Skype backend request GetThreadsS2SRequest

核能气质少年 提交于 2020-12-15 06:49:08
问题 I'm getting the following error message. Failed to execute Skype backend request GetThreadsS2SRequest when trying to Add , Update or Delete channels using MS Graph API for Teams. The calls were working fine for a while but now suddenly this error comes up. This happens particularly when the channel type is private . Any help would be much appreciated. Thanks. 来源: https://stackoverflow.com/questions/64858194/ms-graph-api-error-failed-to-execute-skype-backend-request-getthreadss2sreques

Odata.bind error when creating a team with microsoft graph

大憨熊 提交于 2020-12-15 05:15:31
问题 I'm using miscrosoft graph with .net core to create a team in Microsoft Teams. But when I send the request for the team creation I always get an error message: Invalid bind property name template in request. To do that, I followed the step required in the documentation here: https://docs.microsoft.com/en-us/graph/api/team-post?view=graph-rest-beta&tabs=csharp#example-4-create-a-team-from-group I already tried a bunch of example from the Microsoft documentation, from the v1.0 and beta one. My

Odata.bind error when creating a team with microsoft graph

僤鯓⒐⒋嵵緔 提交于 2020-12-15 05:15:12
问题 I'm using miscrosoft graph with .net core to create a team in Microsoft Teams. But when I send the request for the team creation I always get an error message: Invalid bind property name template in request. To do that, I followed the step required in the documentation here: https://docs.microsoft.com/en-us/graph/api/team-post?view=graph-rest-beta&tabs=csharp#example-4-create-a-team-from-group I already tried a bunch of example from the Microsoft documentation, from the v1.0 and beta one. My

MS Teams apps added though the graph are sometimes deleted

萝らか妹 提交于 2020-12-13 03:11:10
问题 I have an issue concerning MS Teams when using the Graph API. This problem might be difficult to reproduce since it does not happen all the time. Basically, we have a test set up that uses a source team that has a couple of apps and creates a copy of that team. To do that with must add the same apps as the source team so we use: https://graph.microsoft.com/v1.0/teams/{id}/installedApps Right after the POST, which return a 201 Created which is successful if we look at the doc, we use the GET