Saviynt unveils its cutting-edge Intelligence Suite products to revolutionize Identity Security!
Click HERE to see how Saviynt Intelligence is transforming the industry.
Saviynt Copilot Icon

service api user password reset while sso is enabled

SavUser1
New Contributor III
New Contributor III

We have created a service API user in Saviynt and are trying to reset the password. However, we are encountering issues.

Here are the steps we've followed:

  1. Created a user in Saviynt with the username: serviceapiuser.
  2. Assigned the appropriate SAV Role: ROLE_ADMIN. and change the password from Admin console.
  3. To Enable local authentication.
  • Generated an access token using the admin account.
  • Sent the following payload to enable local authentication.

/ECM/updateUser

{

   "propertytosearch":"username",

   "username":"serviceapiuser",

   "localAuthEnabled":”true”,

   "passwordExpired":"false"

 

}

  • Although I receive a "200 OK" response, local authentication is still not enabled.
  • The /ECM/login/auth is giving 403 error.
  1. I also used the below changePassword to update the password, and authentication is failing(401 error).

{{url}}/ECM/{{path}}/changePassword

 Also, the Set Security Question on Login is not enabled.

Any input?

3 REPLIES 3

rushikeshvartak
All-Star
All-Star

validate get user api ouptut

rushikeshvartak_0-1730751467725.png

 


Regards,
Rushikesh Vartak
If this helped you move forward, click 'Kudos'. If it solved your query, select 'Accept As Solution'.

Yes, it is false. Why it is not updating the value to true ? although it gives 200 ok response.

Oh God.

I just copied your post body. you have double quote issue 

rushikeshvartak_0-1730752403810.png

Use below

{
   "propertytosearch":"username",
   "username":"serviceapiuser",
   "localAuthEnabled":"true",
    "passwordExpired":"false"
}

 


Regards,
Rushikesh Vartak
If this helped you move forward, click 'Kudos'. If it solved your query, select 'Accept As Solution'.