how to set custom role coming from api in mendix user roles

0
Hi Everyone, I have custom user roles coming from API response now I have to set these roles to mendix roles. So that I Can show pages according to there respected roles.
asked
3 answers
2

we have done similer kins of thing but for SAML integration.

once you get the data back from post get the role info and account info,fetch the account and role object from DB and user them

 

some time role name might not be same as exactly as u get in rest reponse you u might want to maintain a mapping in the App for them in some entity.

answered
1

You can make different decisions in a microflow, one per role. Based on the decision, you can retrieve the correct UserRole from your database, which you then link to the correct user. 

answered
0

You cannot create new role dynamically in run time.

Mendix User roles, related module roles and access is 100% managed in the model.

 

There are ways to setup the security dynamically, but therefore we need more information about the use case in your situation.

answered