# Get suppliers Endpoint: GET /v2/suppliers Version: 2.0 Security: bearer ## Query parameters: - `limit` (number) The number of items to return. - `offset` (number) The number of items to skip before starting to collect the result. - `sortBy` (array) Sort the results by the specified field(s). - `sortDesc` (array) Sort the results in descending order. (true for descending, false for ascending) - `search` (string) ## Response 200 fields (application/json): - `offset` (number) The number of items skiped before starting to collect the result. - `limit` (number) The number of items to return. - `total` (number) The total number of items. - `data` (array) The list of items. - `data.id` (string, required) - `data.supplierRef` (array, required) - `data.name` (string, required) - `data.type` (string, required) - `data.category` (string, required) - `data.country` (string, required)