@dan Sorry, I misspoke here - it should say, when we deactivate a user, not when we lock a user. We are calling the Java client deactivateUser()
method:
Posts made by jason
-
RE: Locking a user account does not change lastUpdateInstant
-
Locking a user account does not change lastUpdateInstant
When we lock a user, the
lastUpdateInstant
isn't being updated to the time we do the locking at. Is there any way to get this field to update on user locks? Or alternatively, another field we can reference to see when a user account was locked. -
Error on Users Page (and API)
Hi there,
When I navigate to the user tab of my cloud hosted FA instance (https://[myapp].fusionauth.io/admin/user/), I see the following error message: "FusionAuth encountered an unexpected error. Please review the troubleshooting guide for assistance and the available support channels. https://fusionauth.io/docs/v1/tech/troubleshooting/"
In the server logs I am able to see the following error:
All shards failed for phase: [query]
org.elasticsearch.ElasticsearchException$1: Text fields are not optimised for operations that require per-document field data like aggregations and sorting, so these operations are disabled by default. Please use a keyword field instead. Alternatively, set fielddata=true on [login] in order to load field data by uninverting the inverted index. Note that this can use significant memory.Is there some way to fix this?
-
API for getting users that have been updated since a timestamp
Is there an API which can provide all users that have been updated since a certain timestamp? By updated I mean their name, username, email, or password has changed.
We are using the Java client (but can use HttpClient to access FusionAuth web APIs directly) and are calling
FusionAuthClient.searchUsersByQuery()
. I am unable to find an example of a query we can use inUserSearchCriteria.queryString
of theSearchRequest
- is there a way to do this?