2016-05-13 129 views
0

我嘗試使用Microsoft API Graph在Office365上創建通訊組列表。Microsoft API圖創建通訊組列表

對於這一點,我做「https://graph.microsoft.com/beta/blih.bocal.org/groups」 POST請求使用JSON參數:

{ 
    "description": "My description", 
    "displayName": "testlist", 
    "groupTypes": ['Unified'], 
    "mailEnabled": True, 
    "mailNickname": "testlist", 
    "securityEnabled": False 
} 

它創建了一個office365組或一些小變化的安全組,但無法創建通訊組列表。通過網絡,我可以做到這一點,當我通過API獲取它時,參數「groupTypes」是空的。

我的要求有什麼不好或如何去做(如果可能的話)?

回答