Configure role provisioning for Auth0

Configure Auth0 to send the "groups" attribute to enable role provisioning in your StatusPal status page.

Once you have your StatusPal SSO configured with Auth0, follow the steps below to start sending the groups attribute via SAML

  1. Go to your Auth0 dashboard, select your application, and open the SAML2 Web App addon.

  2. Add the following to your Settings JSON

    "mappings": {
      "groups": "http://schemas.xmlsoap.org/claims/groups"
    },

The updated Settings section should look like this:

  1. Within your Auth0 dashboard, head over to Extensions

  2. In the Auth0 dashboard, go to Extensions, and install the Auth0 Authorization extension if you haven’t already. This will add an "Authorization" link to your left sidebar.

  1. Click the Authorization link in the sidebar, then go to the Groups section.

  1. Create your groups and add members as needed.

Now, we should receive the groups attribute from Auth0, containing the groups that are assigned to the user signing in.

Last updated