I have created Azure B2C application in Azure Portal. I need to use only sign-in policy for this application(no sign-up). I need to create two kinds of users - Simple User
and Admin
. For this purpose I have created custom string attribute - Role
. It is returned as a claim for sign-in policy via token.
Now I want to add new user with Role = Admin
using Azure portal - but I can not find any place where I can edit Role(custom attribute) for this user.
The only way I managed to edit Role attribute is using Azure B2C Graph API Application. But I dont want to create extra UI for this purpose in my application.
So, my questions are:
- Is it possible to add new user with custom attribute using Azure Portal without using sign-up policy?
- Are there any other ways of adding custom attribute to user except GraphAPI and sign-up?