Forum Discussion
Marc Jordana Reist
Feb 04, 2020Brass Contributor
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...
- Jan 21, 2022Now 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"
]
}
]
}
Marc Jordana Reist
Jan 14, 2021Brass Contributor
For those out there still struggling with this problem, Microsoft published an update to the Microsoft Graph API that allows custom apps to send activity messages to users.
https://docs.microsoft.com/en-us/graph/teams-send-activityfeednotifications
I hope this helps!
Best regards,
Marc Jordana