microsoft-graph-teams

Create a 'event as online meeting' or only the onlineMeeting using Microsoft Graph API

荒凉一梦 提交于 2020-08-06 12:45:13
问题 Any user who logged into our system (IdentityServer as Auth) under a specific tenant should be able to create an event as an online meeting (MS Teams). We followed Build ASP.NET Core MVC apps with Microsoft Graph and Create and enable an event as an online meeting to create an application that authenticates an AD user of an organization and allow him to create an event as an online meeting. We are able to implement it successfully and was able to create the event as an online meeting. But the

How to handle deleted Recurring master events using Microsoft delta queries

 ̄綄美尐妖づ 提交于 2020-07-23 06:41:32
问题 I am trying to move from EWS to Microsoft graph and facing problem while implementing syncFolderItems flow. I need to track and update changes of all created, modified and deleted events using Microsoft graph apis. I went through Microsoft documentation and found they have delta Api which returns only the changes which occurred from last sync. But I am not sure how recurring events should be handled using delta queries api. Please help. Thanks in advance. 回答1: The current behavior is that

How to handle deleted Recurring master events using Microsoft delta queries

烂漫一生 提交于 2020-07-23 06:40:32
问题 I am trying to move from EWS to Microsoft graph and facing problem while implementing syncFolderItems flow. I need to track and update changes of all created, modified and deleted events using Microsoft graph apis. I went through Microsoft documentation and found they have delta Api which returns only the changes which occurred from last sync. But I am not sure how recurring events should be handled using delta queries api. Please help. Thanks in advance. 回答1: The current behavior is that

How can I set a team picture programmatically using Microsoft graph API?

邮差的信 提交于 2020-07-22 05:11:22
问题 How can I set a team picture using Microsoft graph API? Is there a way while provisioning Microsoft team using the automated way[Using Microsoft Graph Team API] we can set team picture icon or upload team picture icon using Microsoft graph API. 回答1: Yes you can do that through the group profile photo endpoint. Each Microsoft team relies on a unified group underneath so all operations done on a group will reflect on the team. Here is the documentation of the endpoint 回答2: Set Team Icon can be

MS Team[BETA] API for Message object property type for reaction

孤者浪人 提交于 2020-07-10 08:31:06
问题 I am trying to create the schema for Message API As per the documentation, the sample response properties for reaction provided are below Documentation sample response "reactions": [ { "reactionType": "like", "createdDateTime": "2019-01-21T19:55:51.893Z", "user": { "application": null, "device": null, "conversation": null, "user": { "id": "e1ecb745-c10f-40af-a9d4-cab946c80ac7", "displayName": null, "userIdentityType": "aadUser" } } } ] From the documentation user is Identity type identity set

Microsoft Graph ChatMessage Namespace Missing in C#

帅比萌擦擦* 提交于 2020-07-09 06:09:10
问题 I'm following the Microsoft Graph tutorial to create and send a chat message to a Microsoft Teams channel from C#. However, I'm getting an error when following the first example when trying to create a ChatMessage object. ( var chatMessage = new ChatMessage... ) The error is: The type or namespace name 'ChatMessage' could not be found (are you missing a using directive or assembly reference?) I've added the following references to my project already but none of them seem to contain the

Microsoft Graph ChatMessage Namespace Missing in C#

青春壹個敷衍的年華 提交于 2020-07-09 06:05:09
问题 I'm following the Microsoft Graph tutorial to create and send a chat message to a Microsoft Teams channel from C#. However, I'm getting an error when following the first example when trying to create a ChatMessage object. ( var chatMessage = new ChatMessage... ) The error is: The type or namespace name 'ChatMessage' could not be found (are you missing a using directive or assembly reference?) I've added the following references to my project already but none of them seem to contain the