I have a power app that creates new Teams Channels and records the information onto a sharepoint list.
How do I capture the ID for the newly created Teams Channel and include that as a data point on my sharepoint list of channels?
Hi @jbacacia ,
Does the above solutions helped you?
If yes, then please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs.
Thanks,
ANB
Hi @jbacacia ,
There is another way too without Flow. Make sure you add Microsoft Teams connector to PowerApps. Then use below code.
ClearCollect(col,MicrosoftTeams.GetAllTeams().value);
Above collection will give you list of all Teams.
Then LookUp above collection with the newly created Teams name which will give you the ID.
LookUp(
col,
displayName = "XYZ"
).id
I hope this helps.
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs.
Thanks,
ANB
Hi @jbacacia ,
Hope you are doing well!
Below is the code to run the Power Automate from PowerApps button which will give you an ID of teams and store in variable.
Once you get the ID, then you can use and store in SharePoint.
I hope this helps.
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs.
Thanks,
ANB
WarrenBelz
637
Most Valuable Professional
stampcoin
570
Super User 2025 Season 2
Power Apps 1919
473