go back to CustomerService

GET /customers/search

Searches the database for customers 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 customer table

For example, /customers/search?is_active=Y&name=mc*&last_ship_date=>=t-100 would find active customers having a name that starts with 'mc' who shipped something in the last 100 days.
context HttpServletRequest

Result

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

a list of customer objects

Try It Out

Request

- Authentication Help