Microsoft Graph组日历列表事件不起作用

时间:2017-01-31 16:32:03

标签: office365 microsoft-graph

组日历的列表事件方法无效。 我正在尝试使用以下方法从组日历中检索所有事件: https://graph.microsoft.io/en-us/docs/api-reference/v1.0/api/group_list_events无济于事。 我正在通过

调用它
    GET: https://graph.microsoft.com/v1.0/groups/{groupId}/events

我收到的结果是

    "code": "ErrorItemNotFound",
    "message": "The specified object was not found in the store.",

我做错了什么,或者API目前不支持此方法?

编辑: 小组回应:

{
"@odata.context": "https://graph.microsoft.com/v1.0/$metadata#groups/$entity",
"id": "{id}",
"classification": null,
"createdDateTime": "2017-01-31T11:20:00Z",
"description": "1",
"displayName": "doctest",
"groupTypes": [
    "Unified"
],
"mail": "{email}",
"mailEnabled": true,
"mailNickname": "doctest",
"onPremisesLastSyncDateTime": null,
"onPremisesSecurityIdentifier": null,
"onPremisesSyncEnabled": null,
"proxyAddresses": [
    "SMTP:{email}"
],
"renewedDateTime": "2017-01-31T11:20:00Z",
"securityEnabled": false,
"visibility": "Public"
}

有效的群组(非沙箱租户):

 {
"@odata.context": "https://graph.microsoft.com/v1.0/$metadata#groups/$entity",
"id": "{id}",
"classification": null,
"createdDateTime": "2016-12-13T16:47:53Z",
"description": "asd",
"displayName": "UploadTest",
"groupTypes": [
    "Unified"
],
"mail": "{email}",
"mailEnabled": true,
"mailNickname": "asd",
"onPremisesLastSyncDateTime": null,
"onPremisesSecurityIdentifier": null,
"onPremisesSyncEnabled": null,
"proxyAddresses": [
    "SMTP:{email}"
],
"renewedDateTime": "2016-12-13T16:47:53Z",
"securityEnabled": false,
"visibility": "Public"
}

0 个答案:

没有答案