RuntimeServiceAddGroupsToUser Method |
Namespace: Advantys.Workflow.Web.Services.Processes.Runtime
The method receives a list of groups to associate to the user. Groups must be in the same directory as the user directory. For parameters that support both a name and an id, the name will be ignored if an id is set.
Optional Parameters.UserId (int) | Specifies the user id. Supercedes the username. |
IgnoreMissingAssociations (bool) | Sets whether or not to return an error when an association (group) is missing from the target. Default = true. |
<Groups> <Group> <Name>Group1</Name> </Group> <Group> <Name>Group2</Name> </Group> </Groups>
RuntimeServiceWebService.RuntimeService myRuntimeService = new RuntimeServiceWebService.RuntimeService(); RuntimeServiceWebService.UserHeader myUserHeader = new RuntimeServiceWebService.UserHeader(); myRuntimeService.UserHeaderValue = myUserHeader; myUserHeader.IgnoreMissingAssociations = ignoreMissingAssociations; myRuntimeService.AddGroupsToUser(username, groupsDefinition);