IDRARestServer GroupMemberAdd Method DRA REST Extensions SDK
Adds the specified objects to the group
UriTemplate: /dra/domains/{domainFqdn}/groups/members/post

Namespace: NetIQ.DRA.RestServiceLibrary
Assembly: NetIQ.DRA.RestServiceLibrary (in NetIQ.DRA.RestServiceLibrary.dll) Version: 1.1.0.318 (1.1.0.318)
Syntax

[OperationContractAttribute]
[WebInvokeAttribute(Method = "POST", ResponseFormat = WebMessageFormat.Json, 
	RequestFormat = WebMessageFormat.Json, BodyStyle = WebMessageBodyStyle.Wrapped, 
	UriTemplate = "/dra/domains/{domainFqdn}/groups/members/post")]
Stream GroupMemberAdd(
	string domainFqdn,
	string groupIdentifier,
	string[] groupIdentifiers,
	User[] users,
	Computer[] computers,
	Group[] groups,
	Contact[] contacts,
	ConnectionParameters connectionParameters
)

Parameters

domainFqdn
Type: OnlineSystem String
The FQDN of the domain to query
groupIdentifier
Type: OnlineSystem String
A string identifying a group to be updated. Supported formats are: name and distinguishedName.
groupIdentifiers
Type:  OnlineSystem String 
An array of strings identifying a list of groups to be updated. Supported formats are: name and distinguishedName.
users
Type:  NetIQ.DRA.Common.Rest.DataModels User 
An optional array of User objects to add to the group
computers
Type:  NetIQ.DRA.Common.Rest.DataModels Computer 
An optional array of Computer objects to add to the group
groups
Type:  NetIQ.DRA.Common.Rest.DataModels Group 
An optional array of Group objects to add to the group
contacts
Type:  NetIQ.DRA.Common.Rest.DataModels Contact 
An optional array of Contact objects to add to the group
connectionParameters
Type: NetIQ.DRA.Common.Rest.DataModels ConnectionParameters
Optional ConnectionParameters to specify a DRA server and Assistant Admin credentials

Return Value

Type: OnlineStream
A RestResponse containing the operation results
See Also