How to check an Outlook custom property is available via Microsoft Graph

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-04 19:03:52

You're missing the $expand query param and your id is malformed. The correct call phototype looks like this:

GET /me/events/{id}?$expand=singleValueExtendedProperties($filter=id eq '{prop_id}')

Note the ?$expand=singleValueExtendedProperties rather than ?singleValueExtendedProperties.

For the property itself, you're missing the Name segment:

String {00020329-0000-0000-C000-000000000046} Name myCusPropId

So the final URI would be:

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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!