Forum Discussion
Brent Ellis
Aug 22, 2017Silver Contributor
Email a SharePoint Group from Flow?
Is there a way to email a SharePoint Group from a Flow? (not an O365 Group, not an AD group, but a legit SharePoint group) Or do I have to define and maintain an actual Distribution Group for flo...
Terry Hagan
May 14, 2018Iron Contributor
There is a new Action for SharePoint, "Send an HTTP request to SharePoint", you can use this to retrieve the membership for a group using REST (find the Id of the group first or you can also use the same action to retrieve the groups for the site, then look through them to find your group):
_api/Web/SiteGroups/GetById(4)/users?$select=Title,Email
once you have that you can use the Outlook send mail action to send an email.
_api/Web/SiteGroups/GetById(4)/users?$select=Title,Email
once you have that you can use the Outlook send mail action to send an email.
Joe Volk
Oct 03, 2018Brass Contributor
Terry Hagan If I use this, where does it store the information for me to be able use it later?