Teams incoming conference call notification showing "Unknown user"

金 正勳 41 Reputation points
2022-03-14T06:29:11.547+00:00

Hello,

I am making an iOS app for group call.
the problem is, it always shows "Unknown User (Conference call)" on the incoming call notification (calling by a bot). here is my request code (JSON body) below:

let json = [
            "@odata.type": "#microsoft.graph.call",
            "callbackUri": "https://bot.contoso.com/callback",
            "targets": [
              [
                "@odata.type": "#microsoft.graph.invitationParticipantInfo",
                "identity": [
                  "@odata.type": "#microsoft.graph.identitySet",
                  "user": [
                    "@odata.type": "#microsoft.graph.identity",
                    "displayName": "Sender",
                    "id": VoiceCallManager.targetUserIdTX
                  ]
                ]
              ],
              [
                "@odata.type": "#microsoft.graph.invitationParticipantInfo",
                "identity": [
                  "@odata.type": "#microsoft.graph.identitySet",
                  "user": [
                    "@odata.type": "#microsoft.graph.identity",
                    "displayName": VoiceCallManager.targetUserName,
                    "id": VoiceCallManager.targetUserIdPersonal
                  ]
                ]
              ]
            ],
            "requestedModalities": [
              "audio"
            ],
            "mediaConfig": [
              "@odata.type": "#microsoft.graph.serviceHostedMediaConfig"
            ],
            "tenantId": AuthenticationManager.instance.tenantId
        ] as [String : Any]

Can you please let me know the cause of it?
Thank you.

Microsoft Security | Microsoft Graph
Microsoft Teams | Microsoft Teams for business | Other
0 comments No comments
{count} votes

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.