Look up customers for a picker
Finds customers whose email, first name, last name or external id contains the term, and returns only the fields a picker renders. Unlike the customer index this endpoint does not paginate and does not count the match set, so it stays cheap enough to call on every keystroke. The term must carry at least three characters: shorter terms carry no trigram, the indexes behind the search cannot serve them, and the query would degrade to a scan of the whole tenant.
Authorizations
Bearer token authentication
Query Parameters
Term matched case-insensitively anywhere in the customer's email, first name, last name or external id. The term is split on whitespace and every word must match, so at least one word must carry three characters or more.
\S{3,}Maximum rows to return. Defaults to 10 and is capped at 25.
Response
Success
Picker rows for a lookup term, wrapped in the standard API response envelope.
The matching rows, newest customer first, at most as many as the limit allows.
The HTTP status code echoed in the response envelope.
200
The correlation metadata Api::Response emits on every target-pattern endpoint. Distinct from the legacy Meta schema, which carries request_id rather than request_uuid.