List Customers
GET /api/v1/customers
Filter by status, type, email, search. Sort by customer_id, first_name, last_name, email, registered.
Use email for an exact match lookup:
GET /api/v1/[email protected]
Use search for partial matching across name and email:
GET /api/v1/customers?search=john
Note: Password fields are never included in API responses.
Get Customer
GET /api/v1/customers/{id}
Returns customer details with address and order counts.