Forum Discussion

maba91's avatar
maba91
Copper Contributor
May 18, 2021
Solved

Custom app not available in meeting configuration

Hi,   I am developing a custom app for teams, and after adding it to my organization, I can’t get the meeting integration working as I’d like.   If I go to the ‘apps’ button in the lower left cor...
  • Mamatha-MSFT's avatar
    May 19, 2021

    Hi maba91, You need to mention "meetingSurfaces" object in your manifest as shown in below

    "configurableTabs": [
    {
    "configurationUrl": "URL",
    "canUpdateConfiguration": true,
    "scopes": [
    "groupchat",
    "team"
    ],
    "meetingSurfaces": [
    "sidePanel"
    ],
    "context": [
    "meetingSidePanel",
    "channelTab",
    "privateChatTab",
    "meetingChatTab",
    "meetingDetailsTab",
    "meetingSidePanel"
    ]
    }
    ]

Resources