go back to UserService

GET /users/search

Searches the database for users matching the given request parameters.

Parameters

name description type default type
request read for query parameters to be used as search criteria; use any combination of fields from the users table

For example, /users/search?is_active=Y&email_address=*example.org&phone== would find active users having an email address that ends with 'example.org' and a null phone number.
context HttpServletRequest

Result

List < RowUsers > of type: application/xml application/json

a list of RowUsers objects

Try It Out

Request

- Authentication Help