| IDRARestServerGetMailboxProperties Method |
Retrieves rights/security information of specified mailbox
UriTemplate: /dra/domains/{domainFqdn}/users/mailbox/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}/users/mailbox/get")]
Stream GetMailboxProperties(
string domainFqdn,
string userIdentifier,
string[] attributes,
string exchangeServer,
GetInfoOptions getInfoOptions,
ConnectionParameters connectionParameters
)
<OperationContractAttribute>
<WebInvokeAttribute(Method := "POST", ResponseFormat := WebMessageFormat.Json,
RequestFormat := WebMessageFormat.Json, BodyStyle := WebMessageBodyStyle.Wrapped,
UriTemplate := "/dra/domains/{domainFqdn}/users/mailbox/get")>
Function GetMailboxProperties (
domainFqdn As String,
userIdentifier As String,
attributes As String(),
exchangeServer As String,
getInfoOptions As GetInfoOptions,
connectionParameters As ConnectionParameters
) As Stream
Parameters
- domainFqdn
- Type: SystemString
The FQDN of the domain to query - userIdentifier
- Type: SystemString
A string identifying the user. Supported formats are: name or distinguishedName - attributes
- Type: SystemString
An optional list of properties to retrieve from the server - exchangeServer
- Type: SystemString
The name of the Exchange server hosting the mailbox. Only required when attributes contains unifiedMessaging - getInfoOptions
- Type: NetIQ.DRA.Common.Rest.DataModelsGetInfoOptions
An optional GetInfoOptions structure that controls what data is returned - connectionParameters
- Type: NetIQ.DRA.Common.Rest.DataModelsConnectionParameters
Optional ConnectionParameters to specify a DRA server and Assistant Admin credentials
Return Value
Type:
StreamA
MailboxPropertiesResponse containing the operation results.
See Also