Microsoft Graph InTune Beta API& - 无法将应用添加到应用政策

时间:2017-02-08 18:56:39

标签: azure microsoft-graph intune

我正在尝试使用Intune特定的beta Graph API将应用分配给iOS托管应用保护政策。我可以使用下面记录的端点创建应用策略:

https://graph.microsoft.io/en-us/docs/api-reference/beta/api/intune_mam_iosmanagedappprotection_create

通过API创建时,应用程序" deployedCount"在管理控制台UI中添加特定应用程序之前为0。

现在,我正在尝试使用下面记录的端点检索API添加到任何策略的应用程序。

https://graph.microsoft.io/en-us/docs/api-reference/beta/api/intune_mam_mobileappidentifierdeployment_list

我收到400个错误的请求响应,似乎表示此端点不存在或未正确响应。如果我错误输入端点,这似乎不同。

我收到的回复:

.post()

如果我输入错误,请回复:

{
  "error": {
    "code": "No method match route template",
    "message": "No OData route exists that match template ~/entityset/key/navigation with http verb GET for request   /MAMAdmin/MAMAdminFEService/managedAppPolicies('T_338de6df-386d-4f1b-a51c-a0d189c61722')/mobileAppIdentifierDeployments.",
    "innerError": {
      "request-id": "79514f29-4dca-48a5-a2de-5d14138577d7",
      "date": "2017-02-08T17:46:52"
    }
  }
}

1 个答案:

答案 0 :(得分:1)

您好,这是来自MSFT的Alemeshet Alemu。

抱歉,API文档有点不同步。你可以试试$ expand吗?

GET / managedAppPolicies / {managedAppPoliciesId}?$ expand = mobileAppIdentifierDeployments

  • Alemeshet Alemu(MSFT)