Hello @Guy Kedar ,
I find one thing that might be used in your scenario. The subEntityId parameter that you can add in your deeplink and make use of it.
Follow this doc for more information - Generate a deep link to your tab
https://teams.microsoft.com/l/entity/<appId>/<entityId>?context={"subEntityId":"useThisValue"}
You need to get first context and you can access it like context.subEntityId
microsoftTeams.getContext((context) => {
if (context) {
this.setState({ teamsContext: context });
}
});
Hope this helps.
Other than this I didn't find anything that can be used in your scenario.
Thanks,
Hunaid Hanfee
If the response is helpful, please click "Accept Answer" and upvote it. You can share your feedback via Microsoft Teams Developer Feedback link. Click here to escalate.