首页 > 解决方案 > 如何使用 Microsoft Graph API 获取 AppointmentItem.BillingInformation 属性

问题描述

我正在尝试使用 扩展BillingInformation我的交换日历事件中的字段graph api。查询事件工作正常,但我无法获得属性:BillingInformation

https://graph.microsoft.com/v1.0/me/events?$expand=singleValueExtendedProperties($filter=id eq 'String {00062008-0000-0000-C000-000000000046} Name BillingInformation')

https://graph.microsoft.com/v1.0/me/events/?$filter=singleValueExtendedProperties/any(ep: ep/id eq 'String {00062008-0000-0000-C000-000000000046} Name BillingInformation' and ep/value ne null)

标签: graph

解决方案


它适用于以下查询: https : //graph.microsoft.com/v1.0/me/events ?$expand=singleValueExtendedProperties($filter=id eq 'String {00062008-0000-0000-C000-000000000046} Id 0x8535' )


推荐阅读