Click or drag to resize

IDRARestServerGetResourceMailboxesRequest Method

Retrieves a list of resource mailboxes matching the specified search criteria or returns the requested attributes of a specified resource mailbox.
UriTemplate: /dra/domains/{domainFqdn}/resourcemailboxes/get

Namespace:  NetIQ.DRA.RestServiceLibrary
Assembly:  NetIQ.DRA.RestServiceLibrary (in NetIQ.DRA.RestServiceLibrary.dll) Version: 10.2.2.1
Syntax
[OperationContractAttribute]
[WebInvokeAttribute(Method = "POST", ResponseFormat = WebMessageFormat.Json, 
	RequestFormat = WebMessageFormat.Json, BodyStyle = WebMessageBodyStyle.Wrapped, 
	UriTemplate = "/dra/domains/{domainFqdn}/resourcemailboxes/get")]
Stream GetResourceMailboxesRequest(
	string domainFqdn,
	string resourceMailboxIdentifier,
	EquipmentMailbox equipmentMailboxOrFilter,
	EquipmentMailbox equipmentMailboxAndFilter,
	RoomMailbox roomMailboxOrFilter,
	RoomMailbox roomMailboxAndFilter,
	PowerFilter[] powerFilters,
	string[] attributes,
	GetInfoOptions getInfoOptions,
	EnumerationOptions enumerationOptions,
	ConnectionParameters connectionParameters
)

Parameters

domainFqdn
Type: SystemString
The FQDN of the domain to query
resourceMailboxIdentifier
Type: SystemString
A string identifying the resource mailbox. Supported formats are: name or distinguishedName
equipmentMailboxOrFilter
Type: NetIQ.DRA.Common.Rest.DataModelsEquipmentMailbox
An optional ou object that defines the attribute patterns to match for resource mailbox users to use in the 'or' clause
equipmentMailboxAndFilter
Type: NetIQ.DRA.Common.Rest.DataModelsEquipmentMailbox
An optional ou object that defines the attribute patterns to match for resource mailbox users to use in the 'and' clause
roomMailboxOrFilter
Type: NetIQ.DRA.Common.Rest.DataModelsRoomMailbox
An optional ou object that defines the attribute patterns to match for resource mailbox users to use in the 'or' clause
roomMailboxAndFilter
Type: NetIQ.DRA.Common.Rest.DataModelsRoomMailbox
An optional ou object that defines the attribute patterns to match for resource mailbox users to use in the 'and' clause
powerFilters
Type: NetIQ.DRA.Common.Rest.DataModelsPowerFilter
An optional PowerFilter object that limits the returned objects to those which the AA has the specified powers over
attributes
Type: SystemString
An optional list of properties to retrieve from the server
getInfoOptions
Type: NetIQ.DRA.Common.Rest.DataModelsGetInfoOptions
An optional GetInfoOptions structure that controls what data is returned
enumerationOptions
Type: NetIQ.DRA.Common.Rest.DataModelsEnumerationOptions
An optional EnumerationOptions structure that controls how the enumeration is performed
connectionParameters
Type: NetIQ.DRA.Common.Rest.DataModelsConnectionParameters
Optional ConnectionParameters to specify a DRA server and Assistant Admin credentials

Return Value

Type: Stream
A GetResourceMailboxPropertiesResponse when attributes of a resource mailbox are requested or a ResourceMailboxListResponse containing resource mailboxes that matched the specified search filters.
Remarks
See Also