
a6v1j (a6v1j) asked a question.
Mass password reset (not using active directory)
I'm looking for a way to reset the passwords for all users in a group, in case of a security breach. We are not using active directory so the Directory > People > Reset passwords feature will not work. Any ideas?

you can use the APIs to do in bulk as like below
{{url}}/api/v1/users/{{userId}}
{
"credentials": {
"password" : { "value": "{{password}}" }
}
}