With the code below you can Users to a Group. Is there any way to disable notifications? I don't want this to trigger an email to the users added.
var user1 = client.Users["myuser@xx.dk"]
.Request()
.GetAsync()
.Result;
client
.Groups[groupId]
.Owners
.References
.Request()
.AddAsync(user1)
.Wait();