
Announcements
Hello,
I am trying to add a new feature to my app. It is like Serivce desk/Helpdesk
Now users can send tasks to each other. But they cannot send tasks to O365/Distribution groups and I was asked to create this new functionality.
I was thinking to do a drop-down list with all the groups that our organization has and then selecting that group and assigning a task to that group (like an email). The problem is, how to get all those groups? with Office365Groups connector only O365 groups can be retrieved.
Is there any way to create this functionality without the Mircosoft Graph connector?
Hi @dovydasnnl ,
Maybe you could try Azure AD connector:
ClearCollect(YourCollection,ForAll(AzureAD.GetMemberGroups(User().Email,true),AzureAD.GetGroup(Value)))
I think this link will help you a lot:
Best Regards,
Bof