Microsoft Graph API:如何使用Get Call方法?

问题描述 投票:0回答:1

我正在使用Microsoft Graph API检索有关Microsoft Teams的信息。现在,我想使用以下文档中的方法来检索有关该呼叫的信息:https://docs.microsoft.com/en-us/graph/api/call-get?view=graph-rest-1.0&tabs=http

在这里,我必须使用以下网址:GET / communications / calls / {id}

事实是我不知道我需要使用什么ID,因为未在文档中指定。我尝试使用团队的组ID,频道ID和个人ID,但它们都不起作用。有人知道如何使用此方法吗?

谢谢

microsoft-graph azure-ad-graph-api microsoft-graph-cloudcommunications
1个回答
0
投票

请参阅Properties of call resource typeid通话ID。只读。

create a call时,您会在响应中得到一个id。参见response sample

[当您需要接听电话时,只需将此ID值放入GET https://graph.microsoft.com/v1.0/communications/calls/{id}

© www.soinside.com 2019 - 2024. All rights reserved.