# List of customers Listing of customers. Supports the Paging. Endpoint: GET /api/customers Version: 1.0.0 Security: shoptetAccessToken, shoptetPrivateApiToken ## Query parameters: - `email` (string) filtering as per customer’s e-mails. An accurate match is searched for, regardless of capitalization. Example: "john@example.com" - `phone` (string) Example: "+420123456789" ## Header parameters: - `Content-Type` (string, required) ## Response 200 fields (application/json): - `data` (object, required) - `data.customers` (array, required) - `data.customers.guid` (string, required) Customer GUID - `data.customers.creationTime` (string,null, required) registration date - `data.customers.changeTime` (string,null, required) date and time of last change - `data.customers.billCompany` (string,null, required) name of the company (can be ) - `data.customers.billFullName` (string,null, required) full name of the customer (can be ) - `data.customers.adminUrl` (string, required) link to the customer details in administration - `data.paginator` (object, required) - `data.paginator.totalCount` (integer, required) total number of available records - `data.paginator.page` (integer, required) current page - `data.paginator.pageCount` (integer, required) total available of pages - `data.paginator.itemsOnPage` (integer, required) number of currently returned records - `data.paginator.itemsPerPage` (integer, required) required number of records per page - `errors` (array,null, required) - `errors.errorCode` (string, required) Short text error identification - `errors.message` (string, required) Descriptive error message - `errors.instance` (string, required) Identification of the entity referenced