Skip to main content
Question

Bulk update user passwords in IFS cloud

  • October 17, 2022
  • 5 replies
  • 314 views

Forum|alt.badge.img+13

Hi Guys,

In IFS cloud versions since there are no database end users what’s the workaround to update end users manually?

Use case is we have a customer who has recently upgraded to IFS cloud 22R1 and they are having 1000+ users who need to access the environment. Instead of changing passwords from the application user window one by one wondering is there an easy method of doing this.

TIA   

5 replies

Forum|alt.badge.img+3
  • Do Gooder (Partner)
  • 7 replies
  • February 13, 2023

Replying as I am in a similar scenario and would be curious of a possible solution.

 

Regards,


Randy


Forum|alt.badge.img+11
  • Hero (Customer)
  • 124 replies
  • December 15, 2023

Hello,

I’ve noticed no responses to this for quite some time….

We are starting project to move from Apps 10 to IFS Cloud.

Just gone to login and it is prompting to update password as per below.

 

 

Anyone no if this can be disabled or a means to mass update all our user accounts?

 


Ivanoman
Sidekick (Customer)
Forum|alt.badge.img+5
  • Sidekick (Customer)
  • 12 replies
  • June 7, 2024

Hello, 
I’ve the same issue. 
How is possible that no one asnwer in 5 month?


Ivanoman
Sidekick (Customer)
Forum|alt.badge.img+5
  • Sidekick (Customer)
  • 12 replies
  • November 6, 2024

Some one can answer?


Forum|alt.badge.img+7
  • Sidekick (Customer)
  • 25 replies
  • August 21, 2025

Hi,

I think you have to use the REST API for that. There is an API called UserHandling which includes a function SetUserPassword

The payload looks like this:

{
  "Username": "It is a Text",
  "Password": "It is a Text",
  "PasswordConfirm": "It is a Text",
  "Temporary": true
}

So you could build something which creates this payload for all users and sends a POST request.

Cheers,

Golo