I have an app that will display groups that you are an owner.
//Office365Groups.ListOwnedGroupsV2().value//
The gallery displays the members from that group
//Office365Groups.ListGroupMembers(ComboBox1.Selected.id).value//
I have added a button to add users to the group.
//Office365Groups.AddMemberToGroup(ComboBox1.Selected.id, ComboBox2.Selected.UserPrincipalName);
Reset(ComboBox2);
Reset(TextInput1);
Notify("Request successfully submitted",NotificationType.Success);//
I'm having trouble finding a solution to refresh the gallery. Refresh(datasource) doesn't work for groups. Does anyone have any suggestions?