Azure AD B2C sends invitation to new user

Using the new Azure AD B2C service in preview, I am looking to be able to send an invitation letter to the user to complete the registration of our SaaS application. Each of our customers will manage their users, and I want them to be able to generate an invitation for their new users to access our SaaS application. Then the user will complete the registration process.

Part of this process will also include which "client" this user is assigned to. Part of the invitation process, I would like to know that this client must be part of this client database in our SaaS application.

+5
source share
3 answers

This is not a supported feature. I recommend that you use the Voice user forum to create feature requests; we track them.

There is an existing function request for this: AADB2C: send an email invitation to a new user for registration

0
source

To achieve this, you can use custom policies . You can send JWT to B2C, which includes the โ€œclientโ€ to which the user is assigned.

Here is an example of the code that sends the JWT to B2C.

The policy sheet that gets the JWT here .

Sample application here .

+1
source

This is exactly what I want. Have you created a userโ€™s voice request for which I can vote? I assume that you will need to manage this locally in your own db and convert some statements to add it to id_token.

0
source

Source: https://habr.com/ru/post/1231978/


All Articles