如何使用Microsoft图形API获取EndRecurrenceDate

时间:2020-04-27 06:17:45

标签: microsoft-graph-api mapi microsoft-graph-calendar extended-properties

我正在尝试通过参考本文档使用ms graph api获取 EndRecurrenceDate link 1

没有一个追随者对我不起作用。可能是什么原因

https://graph.microsoft.com/v1.0/me/events/{event-id}==?$expand=singleValueExtendedProperties($filter=id eq 'String {6ED8DA90-450B-101B-98DA-00AA003F1305} Id 0x0000000F')   

。 我更改了扩展查询,但它也没有为API响应中的singleValueExtendedProperties提供任何值

$expand=singleValueExtendedProperties($filter=id eq 'Date {6ED8DA90-450B-101B-98DA-00AA003F1305} Id 0x0000000F')    

$expand=singleValueExtendedProperties($filter=id eq 'String {6ED8DA90-450B-101B-98DA-00AA003F1305} Id 0x0000000F')  

$expand=singleValueExtendedProperties($filter=id eq 'String {6ED8DA90-450B-101B-98DA-00AA003F1305} Name PidLidEndRecurrenceTime')  

1 个答案:

答案 0 :(得分:0)

在 MS-Graph API 中,请通过传递与给定事件对应的 seriesMasterId 来检索 seriesMaster: https://docs.microsoft.com/en-us/graph/api/resources/event?view=graph-rest-1.0

要进行验证,请检查指定事件类型的“类型”字段。它应该具有值“seriesMaster”。

在已经检索到的seriesMaster中,“end”字段将代表重复的结束日期。