I can see that when I CREATE A CHANNEL it's outputting something like,
"body": {
"webUrl": "https://teams.microsoft.com/l/channel/id/display+name+with+pluses+between+the+words?groupId=GuessingThisisTheTeamID&tenantId=MyTenantID",
}
How can I extract this url to use it as a link in my workflow?
Solved! Go to Solution.
Hi @anthonys123,
You could use the expression to extract it, for example:
outputs('Create_a_channel')?['body']['webUrl']
Best Regards,
Community Support Team _ Lin Tu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @anthonys123,
You could use the expression to extract it, for example:
outputs('Create_a_channel')?['body']['webUrl']
Best Regards,
Community Support Team _ Lin Tu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Perfect! Thank you!