Hi All,
What is the object to add a new user in SA API where SSO is configured ? We have a few extra fields like below.
I tried createusr and createusedex but they dont have below fields identity key and identity provider name to populate.
Cybersecurity
DevOps Cloud
IT Operations Cloud
If an answer to your question is correct, click on "Verify Answer" under the "More" button. The answer will now appear with a checkmark. Please be sure to always mark answers that resolve your issue as verified. Your fellow Community members will appreciate it!  Learn more
Hi All,
What is the object to add a new user in SA API where SSO is configured ? We have a few extra fields like below.
I tried createusr and createusedex but they dont have below fields identity key and identity provider name to populate.
If you are using SA API in your SSO enabled ALM, you have to 1st create a user and update/ set the properties of user. Below are the object.
a) CreateUser
b) SetUserProperty
Dim myitem As String Dim saReply As String Set SaApi = CreateObject("SAClient.SAapi.9") myitem = SaApi.CreateUser(user's_username, User's_fullname, user's_emailaddress) saReply = SaApi.SetUserProperty(user's_username, 11, user's_identity_key) saReply = SaApi.SetUserProperty(user's_username, 10, idp_name)
Note: for detail user properties: admhelp.microfocus.com/.../topic100.html