Click or drag to resize

IDRARestServerGetOnlineSharedMailboxRequest Method

Retrieves a list of online shared mailboxes matching the specified search criteria or returns the requested properties of a specified online shared mailbox.
UriTemplate: /dra/tenants/{tenantIdentifier}/onlinesharedmailboxes/get

Namespace:  NetIQ.DRA.RestServiceLibrary
Assembly:  NetIQ.DRA.RestServiceLibrary (in NetIQ.DRA.RestServiceLibrary.dll) Version: 10.3.0.1
Syntax
[OperationContractAttribute]
[WebInvokeAttribute(Method = "POST", ResponseFormat = WebMessageFormat.Json, 
	RequestFormat = WebMessageFormat.Json, BodyStyle = WebMessageBodyStyle.Wrapped, 
	UriTemplate = "/dra/tenants/{tenantIdentifier}/onlinesharedmailboxes/get")]
Stream GetOnlineSharedMailboxRequest(
	string tenantIdentifier,
	string onlineSharedMailboxIdentifier,
	OnlineSharedMailbox onlineSharedMailboxAndFilter,
	OnlineSharedMailbox onlineSharedMailboxOrFilter,
	PowerFilter[] powerFilters,
	SimpleFilterCollection additionalAndFilters,
	SimpleFilterCollection additionalOrFilters,
	string[] attributes,
	GetInfoOptions getInfoOptions,
	EnumerationOptions enumerationOptions,
	ConnectionParameters connectionParameters
)

Parameters

tenantIdentifier
Type: SystemString
The GUID of the tenant where the Online shared mailbox is located
onlineSharedMailboxIdentifier
Type: SystemString
A string identifying the online shared mailbox
onlineSharedMailboxAndFilter
Type: NetIQ.DRA.Common.Rest.DataModelsOnlineSharedMailbox
An optional Online shared mailbox object OnlineSharedMailbox that defines the attribute match patterns to filter on to use in the 'and' clause
onlineSharedMailboxOrFilter
Type: NetIQ.DRA.Common.Rest.DataModelsOnlineSharedMailbox
An optional Online shared mailbox object OnlineSharedMailbox that defines the attribute match patterns to filter on to use in the 'or' 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
additionalAndFilters
Type: NetIQ.DRA.Common.Rest.DataModelsSimpleFilterCollection
An optional SimpleFilterCollection object that contains an additional set of simple filters to use in the 'and' clauuse
additionalOrFilters
Type: NetIQ.DRA.Common.Rest.DataModelsSimpleFilterCollection
An optional SimpleFilterCollection object that contains an additional set of simple filters to use in the 'or' clauuse
attributes
Type: SystemString
An optional array of attributes to retrieve. If not specified a default set will be returned.
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 GetOnlineSharedMailboxPropertiesResponse when attributes of an Online Shared Mailbox are requested or a OnlineSharedMailboxListResponse containing the online shared mailboxes that matched the specified search filters.
See Also