Search consumers by name, email, SSN, or date of birth.
Search consumer core identities using partial or exact field matches.
Parameters
network_id : UUID.
Network scope for the search.
first_name : str, optional.
Case-insensitive partial match on first name.
last_name : str, optional.
Case-insensitive partial match on last name.
personal_email : str, optional.
Case-insensitive partial match on email.
social_security_number : str, optional.
Exact match on SSN.
date_of_birth : str, optional.
Exact match on date of birth (YYYY-MM-DD).
limit : int.
Maximum number of results (1-100). Defaults to 20.
Returns
results : list[ConsumerSearchResult].
Matching consumer core identities.
Examples
GET /entities/consumer/search?network_id=...&first_name=John&last_name=Doe&limit=10
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Network scope for the search
Partial match on first name
Partial match on last name
Partial match on email
Exact match on SSN
Exact match on date of birth (YYYY-MM-DD)
Max results
1 <= x <= 100