Question
I am unable to assign a custom built role to my SAML SSO configuration. when I save the SAML configuration only role_api, role_user are chosen (even though I unselected them in the UI). I want to assign only my Customer Data Governance User role to all persons who come through the SAML auth method.

Answer
- GET the response body of the GET https://auth.reltio.com/oauth/customers/<customerName>
- Take the body from this response and change the following definition to default roles that you desire.
"defaultNewUserRoleList": [
"MDM_CUSTOM1",
"MDM_CUSTOM",
"ROLE_API",
"ROLE_USER"
],
- Apply the changed response body of the GET using PUT https://auth.reltio.com/oauth/customers/<customerName> into the request body.\
Additional Resources
Update SAML Configuration API
Comments
Please sign in to leave a comment.