Reputation: 1236
A few actions in Microsoft Teams will affect all of the members of a particular channel, and I would like to know which people would be reached (e.g. tagging a channel, scheduling an appointment in a channel).
How can I see the list of people in a channel that would be affected?
Upvotes: 1
Views: 331
Reputation: 10844
Remember that a Channel doesn't really contain members, the Team itself does (leaving out Private channels). In addition, recall that a Team is basically an Office 365 Group underneath. As a result, there are two ways to do what you need:
1) Either you can create a Bot, in which case it's easy to get this information, but it's a lot of work if you don't actually need a Bot
2) Alternatively, you can use the Microsoft Graph, in particular the List Members operation.
Upvotes: 1