我已经创建了Azure Active Directory,还为我的目录验证了其域。
但是,当我在其域下创建一个用户时,它不会向该用户的电子邮件发送邀请电子邮件。因此,我必须亲自发送一封包含密码的电子邮件,并要求新用户访问portal.azure.com。
新用户不是访客用户(外部用户,B2B)。因此,这并不是在邀请外部目录用户。
我的问题是,Azure Active Directory是否具有向新创建的用户发送邀请电子邮件的功能?如果可以,该如何启用它?
谢谢
答案 0 :(得分:0)
要通过发送电子邮件邀请用户,可以使用https://graph.microsoft.com/v1.0/invitations中的POST MS graph API。
POST https://graph.microsoft.com/v1.0/invitations
Content-type: application/json
{
"invitedUserEmailAddress": "yyy@test.com",
"sendInvitationMessage": true,
"invitedUserType": "Member", //If you want to invited the user as the member in the aad
"inviteRedirectUrl": "https://myapp.com"
}
结果如下:
有关详细信息,您可以阅读here。