Get Mobile Device Access Override
workmail_get_mobile_device_access_override | R Documentation |
Gets the mobile device access override for the given WorkMail organization, user, and device¶
Description¶
Gets the mobile device access override for the given WorkMail organization, user, and device.
Usage¶
workmail_get_mobile_device_access_override(OrganizationId, UserId,
DeviceId)
Arguments¶
OrganizationId |
[required] The WorkMail organization to which you want to apply the override. |
UserId |
[required] Identifies the WorkMail user for the override. Accepts the following types of user identities:
|
DeviceId |
[required] The mobile device to which the override applies.
|
Value¶
A list with the following syntax:
list(
UserId = "string",
DeviceId = "string",
Effect = "ALLOW"|"DENY",
Description = "string",
DateCreated = as.POSIXct(
"2015-01-01"
),
DateModified = as.POSIXct(
"2015-01-01"
)
)
Request syntax¶
svc$get_mobile_device_access_override(
OrganizationId = "string",
UserId = "string",
DeviceId = "string"
)