我邀請用戶作爲成員添加到使用Microsoft Graph REST API的Active Directory中。通過Microsoft Graph檢查目錄邀請的兌換狀態
curl -X POST \
https://graph.microsoft.com/v1.0/invitations \
-H 'authorization: Bearer ey...Jg' \
-H 'cache-control: no-cache' \
-H 'content-type: application/json' \
-d '{
"invitedUserEmailAddress": "[email protected]",
"inviteRedirectUrl": "https://example.com/afterInvite",
"sendInvitationMessage": false,
"invitedUserType":"Member"
}'
我確實收到了狀態字段的正確響應:
「狀態」:「PendingAcceptance」,
這當然是真的爲用戶剛剛被邀請。有沒有辦法查看用戶是否已經兌換了邀請?
非常感謝
感謝您的回覆Fei!我希望通過狀態檢查來獲得關於邀請的信息,這將很快成爲Graph的一部分。 – Alx
請在Uservoice上對此提出請求:https://officespdev.uservoice.com/forums/224641-feature-requests-and-feedback/category/101632-microsoft-graph-o365-rest-apis –