Listing all Users
Currently, there are no paging or filtering options, so listing Users will get you every User in the system, every time.
Optionally, a q querystring parameter may be provided to filter the returned users by any given string. The search is performed via a trigram similarity index over both the Email and Display Name fields, and results are ordered by match score, best matches first. Note that short search terms (less than 4 or 5 characters) may not return any results. Try a longer search if nothing is appearing.
If a q parameter is given, and it exactly matches an email address that exists in the system, that user's details will always be returned, even for actors who cannot user.list. The request must still authenticate as a valid Actor. This allows non-Administrators to choose a user for an action (eg grant rights) without allowing full search.
Actors who cannot user.list will always receive [] with a 200 OK response.
Query parameters
An optional search parameter.
Response
OK
Example response
[
{
"createdAt": "2018-04-18T23:19:14.802Z",
"displayName": "My Display Name",
"id": 115,
"updatedAt": "2018-04-18T23:42:11.406Z",
"deletedAt": "2018-04-18T23:42:11.406Z",
"lastLoginAt": "2025-01-15T10:30:00.000Z"
}
]Changes
Changed in 4 of the 54 revisions of this API.15
- ○
api operation id
Listing all Usersremoved and replaced withlistAllUsersapi-operation-id-removed
- ○
- ○
removed the non-success response with the status
403response-non-success-status-removed
- ○
- ○
added the optional property
items/allOf[subschema #2]/lastLoginAtto the response with the200statusresponse-optional-property-added
- ○
- ●
removed the optional property
items/allOf[subschema #2]/lastLoginAtfrom the response with the200statusresponse-optional-property-removed
- ○
api operation id
listAllUsersremoved and replaced withListing all Usersapi-operation-id-removed
- ○
added the non-success response with the status
403response-non-success-status-added
This revision also has 11 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog
- ●