Person search methods give a 400 bad request
Summary
When sending a request to search for people by username or displayname, LabraCORE responds with a 400 bad request.
Steps to Reproduce
- Use the api to search for people by username or displayname
Possible Fix
The parameters in the controller are annotated with @RequestBody
, but the api sends the request with request parameters. @RequestParam
seems to work.