Users
Search users
Searches for users with optional filtering by login name
get/api/users
Query parameters
loginstring required
pagenumber double required
Response
Paginated list of user accounts
Example response
{
"content": [
{
"id": "entity123",
"createdBy": {
"id": "abc123",
"friendlyName": "John Doe (john.doe)"
},
"updatedBy": {
"id": "abc123",
"friendlyName": "John Doe (john.doe)"
},
"createdAt": "2023-10-31T12:34:56.789Z",
"updatedAt": "2023-10-31T12:34:56.789Z",
"login": "john.doe",
"firstName": "John",
"lastName": "Doe",
"email": "john.doe@example.com",
"language": "en",
"timezone": "Europe/Paris",
"friendlyName": "John Doe"
}
],
"totalElements": 2,
"size": 10,
"totalPages": 1
}