Hello dear community,
I have been testing the rest api recently and found a strange behavior with the user endpoint.
While trying to list users with a query parameter lastNameLike, I couldn’t retrieve the data.
I’m using the standard, full tomcat CE distribution.
the calls tried:
-
http://localhost:9090/engine-rest/user?lastName=Meter - this one works as expected
returns:
[
{
“id”: “peter”,
“firstName”: “Peter”,
“lastName”: “Meter”,
“email”: “peter@camunda.org”
}
] -
http://localhost:9090/engine-rest/user?lastNameLike=eter - returns []
-
http://localhost:9090/engine-rest/user?lastNameLike=Meter - returns the same object as for #1
The very same behavior I have with firstName and firstNameLike.
Can anyone advise?
Am I using the endpoint correct?
How can I get a list of users by combining firstNameLike and lastNameLike?
Thanks in advance