RuntimeServiceRemoveGroupsFromUser Method |
Namespace: Advantys.Workflow.Web.Services.Processes.Runtime
The method receives a list of groups to remove from the user.
For parameters that support both a name and an id, the name will be ignored if an id is set.
Optional Parameters.
These parameters can be used in the query string or as parameters of the Headers object in the RuntimeService class instance. See example below.
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.UserId = userId; myUserHeader.IgnoreMissingAssociations = ignoreMissingAssociations; myRuntimeService.RemoveGroupsFromUser(username, groupsDefinition);