# List Customers Endpoint: GET /public/v1/customers/ Version: 1.0.0 ## Query parameters: - `search` (string,null) - `id` (array,null) - `customer_type` (array,null) - `name` (string,null) - `email` (string,null) - `website` (string,null) - `address` (string,null) - `country` (string,null) - `state` (string,null) - `phone` (string,null) - `ordering` (string,null) - `limit` (integer) - `offset` (integer) ## Response 200 fields (application/json): - `items` (array, required) - `items.id` (integer, required) - `items.full_address` (object,null, required) - `items.full_address.street` (string, required) - `items.full_address.city` (string, required) - `items.full_address.state` (string, required) - `items.full_address.postal_code` (string, required) - `items.full_address.country` (any) - `items.full_address.second_line` (string) - `items.name` (string, required) - `items.email` (string, required) - `items.website` (string, required) - `items.customer_type` (string, required) - `items.is_active` (boolean, required) - `items.phone` (string, required) - `count` (integer, required) ## Response 400 fields (application/json): - `success` (boolean) - `errors` (object, required) ## Response 500 fields (application/json): - `success` (boolean) - `errors` (object, required)