Forum Discussion

Marc Jordana Reist's avatar
Marc Jordana Reist
Brass Contributor
Feb 04, 2020
Solved

Change tabs sort in Teams app manifest for personal tabs

Hello there,   We are developing an application for Teams that has both a Web App tab and a Bot tab, both within a personal tab scope.   We have tried many things but we can't find the way to rea...
  • Anatoly Mironov's avatar
    Jan 21, 2022
    Now it's possible since the schema version 1.7. https://docs.microsoft.com/en-us/microsoftteams/platform/tabs/how-to/create-personal-tab?tabs=nodejs#reorder-static-personal-tabs. Add a new static tab where you need it and make sure the entityId is "conversations":
    {
    "staticTabs":[
    {

    },
    {
    "entityId":"conversations",
    "scopes":[
    "personal"
    ]
    }
    ]
    }

Resources