Hi
I trying to find a way of checking to see if a Microsoft PowerAutomate Flow exists which checks to see if a Microsoft Teams Team exists. Either using the Microsoft Graph or another way.
I can see how to do this via SharePoint, by looking for the underlying SharePoint Site, but I cannot find anything which just uses Teams.
Thanks
Nigel
Solved! Go to Solution.
@NigelP I was able to achieve this after reading this blog :
http://jopx.blogspot.com/2020/08/quick-tip-how-to-check-if-microsoft.html
here is my flow:
the output of compose action is True if the team exists else False.
I have a team called Suzuki so the output is True and incase of Suzuki1 the output is False
/*checks if team name exists in output */
contains(string(outputs('List_teams')?['body']),variables('varTeamName'))
hope this helps.
--------------------------------------------------------------------------------
If this post helps answer your question, please click on “Accept as Solution” to help other members find it more quickly. If you thought this post was helpful, please give it a Thumbs Up.
@NigelP I was able to achieve this after reading this blog :
http://jopx.blogspot.com/2020/08/quick-tip-how-to-check-if-microsoft.html
here is my flow:
the output of compose action is True if the team exists else False.
I have a team called Suzuki so the output is True and incase of Suzuki1 the output is False
/*checks if team name exists in output */
contains(string(outputs('List_teams')?['body']),variables('varTeamName'))
hope this helps.
--------------------------------------------------------------------------------
If this post helps answer your question, please click on “Accept as Solution” to help other members find it more quickly. If you thought this post was helpful, please give it a Thumbs Up.
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
Learn to digitize and optimize business processes and connect all your applications to share data in real time.
User | Count |
---|---|
13 | |
11 | |
9 | |
7 | |
6 |
User | Count |
---|---|
21 | |
21 | |
17 | |
8 | |
8 |