# List Supplier With Total Count Retrieve a paginated list of suppliers with the total matching count. Requires the "Orders" - "VIEW" group. Endpoint: GET /api/v3/Supplier/WithTotalCount Version: 3.1.0 Security: OAuth2_clientCredentials ## Query parameters: - `PageNumber` (integer, required) The number of page data to be displayed Example: 1 - `PageSize` (integer, required) The number of rows returned by the API Example: 20 ## Request fields (application/json): - `PageNumber` (integer, required) Specifies the starting entry of data to retreive. Example: 1 = first page, 2 = second page. Example: 1 - `PageSize` (integer, required) Number of records returned per page. Default record is 20. Example: 20 ## Response 200 fields (application/json): - `Data` (array) - `Data.Name` (string) the name of supplier to be shown - `Data.Code` (string) the supplier code of the supplier to be shown - `Data.Phone` (string) the phone number of supplier to be shown - `Data.Mobile` (string) the mobile phone number of suppleir to be shown - `Data.Email` (string) the email of the supplier to be shown - `Data.City` (string) the supplier's city name to be shown - `TotalCount` (integer) the total result ## Response 500 fields (application/json): - `Message` (string) - `StackTrace` (string)