In order to delete O365 group (Azure AD group + Sharepoint Online site collection) via .Net Graph SDK the following code may be used:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | public static bool DeleteGroup( string groupId) { try { if ( string .IsNullOrEmpty(groupId)) { return false ; } var graphClientApp = new GraphServiceClient( new AzureAuthenticationProviderAppPermissions()); if (graphClientApp == null ) { return false ; } graphClientApp.Groups[groupId].Request().DeleteAsync().GetAwaiter().GetResult(); return true ; } catch (Exception x) { return false ; } } public class AzureAuthenticationProviderAppPermissions : IAuthenticationProvider { // implement own authentication logic for app permissions } |
Azure AD group will be deleted immediately while associated site collection will be deleted with some delay (usually few minutes).
No comments:
Post a Comment