是否有 REST(图形或其他)等效于 Set-Mailbox 和 Add-MailboxPermission powershell 命令?
Is there a REST (Graph or otherwise) equivalent of Set-Mailbox and Add-MailboxPermission powershell commands?
与 3.5 多年前 基本相同的问题。好奇是否有任何变化?现在可以使用了吗?
希望通过 REST 执行以下命令:
Add-MailboxPermission -Identity $userUPN -User $delegateTo -AccessRights FullAccess -InheritanceType All
Set-Mailbox -Identity $userUPN -Type Shared
谢谢!
- 不,Microsoft Graph 仍未公开邮箱级别的操作 API。
- 您可以使用相同的交换 PowerShell 命令来执行
操作。
- 如果您希望由 Microsoft 实施,consider filing feature request 或对现有的投票,以防万一您找到了 - 以便相应的团队可以考虑。
与 3.5 多年前
希望通过 REST 执行以下命令:
Add-MailboxPermission -Identity $userUPN -User $delegateTo -AccessRights FullAccess -InheritanceType All
Set-Mailbox -Identity $userUPN -Type Shared
谢谢!
- 不,Microsoft Graph 仍未公开邮箱级别的操作 API。
- 您可以使用相同的交换 PowerShell 命令来执行 操作。
- 如果您希望由 Microsoft 实施,consider filing feature request 或对现有的投票,以防万一您找到了 - 以便相应的团队可以考虑。