简体   繁体   中英

How can make Api for Call sharing and group call pickup Microsoft teams?

https://docs.microsoft.com/en-us/microsoftteams/call-sharing-and-group-call-pickup#configure-group-call-pickup How can make Api for Call sharing and group call pickup Microsoft teams?

You can use Call Transfer API endpoint.

POST https://graph.microsoft.com/v1.0/communications/calls/{id}/transfer
Content-Type: application/json
Content-Length: 430

{
  "transferTarget": {
    "endpointType": "default",
    "identity": {
      "user": {
        "id": "xxxxxxx-xxxxxxx-xxxx",
        "displayName": "Heidi Steen"
      }
    },
    "replacesCallId": "replacesCallId-value"
  },
  "clientContext": "xxxxxxx-xxxx-xxxx-xxx-xxxxxxxx"
}

You could take a look into Calling and meeting bot .

And here are the Graph API References

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM