Solved

Multiple SSO providers per user

  • 28 June 2020
  • 1 reply
  • 112 views

How can I set more than one SSO provider for a user?

icon

Best answer by Martin Burian 28 June 2020, 18:39

View original

1 reply

Userlevel 2

This can only be done by the domain admin, and you can achieve it with the help of API: Update User Information API
Example:

{
"accountSetting": {
"firstName": "Jane",
"lastName": "Doe",
"ssoProvider": "sso_provider_1, sso_provider_2",
...
"language": "en-US"
}
}

 

Reply