@ghlogger Try below config in 'authentication.conf' file. [authenticationResponseAttrMap_SAML]
role = http://schemas.auth0.com/roles The attribute value is fetched using 'SAML Tracer' addon. Also, make sure to create a 'Auth Pipeline' rule in Auth0 with below code to pull the roles during authorization. function (user, context, callback) {
// Get the user roles from the Authorization context
const assignedRoles = (context.authorization || {}).roles;
// Update the user object.
user.roles = assignedRoles;
callback(null, user, context);
}
... View more