You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use the FusionAuth API to fetch each user and check passwordChangeRequired field
Additional context
N/A
How to vote
Please give us a thumbs up or thumbs down as a reaction to help us prioritize this feature. Feel free to comment if you have a particular need or comment on how this feature should work.
The text was updated successfully, but these errors were encountered:
Thanks for the feedback @rinkledink ! Can you share more about why you want to search out users who have a password change required? It's always helpful for us to understand the "why" behind an enhancement request.
We have performed a big bang migration and required all users to reset their password in the big bang process. We know want to understand how many of those users have successfully managed to reset their password.
Index of passwordChangeRequired to enable ElasticSearch queries
Problem
Elasticsearch queries on passwordChangeRequired return no results because the field is not indexed.
Works ✅
{
"match": {
"verified": {
"query": true
}
}
}
No results ❌
{
"match": {
"passwordChangeRequired": {
"query": true
}
}
}
No results ❌
{
"match": {
"passwordChangeRequired": {
"query": false
}
}
}
Solution
Add this field to the index
Alternatives/workarounds
Use the FusionAuth API to fetch each user and check passwordChangeRequired field
Additional context
N/A
How to vote
Please give us a thumbs up or thumbs down as a reaction to help us prioritize this feature. Feel free to comment if you have a particular need or comment on how this feature should work.
The text was updated successfully, but these errors were encountered: