admin管理员组文章数量:1418380
I am aware that in the documentation for Event/Delete it states:
If the event is a meeting, deleting the event on the anizer's calendar sends a cancellation message to the meeting attendees.
However, it also states:
Removes the specified event from the containing calendar.
But when the C# code the following is used:
HttpResponseMessage response = await client.DeleteAsync(uri);
The event is cancelled and shows as:
Is there a way to completely delete and event using HTTP REST API to MS Graph?
I am aware that in the documentation for Event/Delete it states:
If the event is a meeting, deleting the event on the anizer's calendar sends a cancellation message to the meeting attendees.
However, it also states:
Removes the specified event from the containing calendar.
But when the C# code the following is used:
HttpResponseMessage response = await client.DeleteAsync(uri);
The event is cancelled and shows as:
Is there a way to completely delete and event using HTTP REST API to MS Graph?
Share Improve this question asked Jan 29 at 17:25 MarianoMariano 1011 silver badge10 bronze badges1 Answer
Reset to default 0Depends on the context eg if you have a non-recurring meeting event and you delete that meeting event using the Graph it will remove the meeting in the Organizer mailbox but for all attendees of the Meeting they will receive a cancellation. To delete that Meeting from an Attendees mailbox you would then have to use a Delete operation on the Attendee (which would only be possible if they where in the same tenant).
If it a recurring instance then deleting an instance will show Cancelled in both cases.
本文标签: Microsoft Graph delete event marked as canceledStack Overflow
版权声明:本文标题:Microsoft Graph delete event marked as canceled - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745287253a2651572.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论