I have a communications bot on MS Teams. The idea is that a user can call this bot who will then invite an agent to the call after gathering some information on the caller. The bot has some other mediating roles so i would like for it to stay in the call. So far I have been able to invite regular users to the call but for applications, such as the call queue and auto attendant, I have been returned an 403 Error code. This is how I tried it.
const requestConfig = {
"headers": {
'Authorization': `Bearer ${accessToken}`
}
}
const requestBody = {
"participants": [
{
"@odata.type": "#microsoft.graph.invitationParticipantInfo",
"identity": {
"@odata.type": "#microsoft.graph.identitySet",
"application": {
"@odata.type": "#microsoft.graph.identity",
"displayName": "Call Queue",
"id": queueId
}
}
}
],
}
In this post Link it was mentioned that it might be possible to redirect an unanswered call to the queue, but I have not yet been able to reproduce this. Highly appreciate feedback.
For redirecting to auto attendants or call queues use the "applicationInstance" identity.
Edit: See the documentation of the request here: https://learn.microsoft.com/en-us/graph/api/call-redirect?view=graph-rest-beta&tabs=http#request