Using the following code you may add user to site collection admins in Sharepoint Online via CSOM:
1 2 3 4 5 6 | var adminContext = ...; // ClientContext for https://{tenant}-admin.sharepoint.com string loginName = ...; // user name which should be added to site collection admins var tenant = new Tenant(adminContext); tenant.SetSiteAdmin(siteUrl, loginName, true ); adminContext.ExecuteQueryRetry(); |
If you need to remove user from site collection admins use the following code:
1 2 3 4 5 6 | var adminContext = ...; // ClientContext for https://{tenant}-admin.sharepoint.com string loginName = ...; // user name which should be added to site collection admins var tenant = new Tenant(adminContext); tenant.SetSiteAdmin(siteUrl, loginName, false ); adminContext.ExecuteQueryRetry(); |
(the difference is only that you need to pass false in tenant.SetSiteAdmin() method). Hope it will help in your work.
No comments:
Post a Comment