# Get a list of locales Endpoint: GET /locales Version: 1.12 Security: bearerAuth ## Query parameters: - `page` (integer, required) Page of results to show Example: 1 - `pageSize` (integer, required) Results to return per page Example: 100 - `sort` (string) Comma-delimited list of the fields to sort by - defaults to ascending order, suffix :desc to change Example: "id,name | name:desc" - `fields` (string) Comma-delimited list of the field(s) to return if only a subset is required Example: "id,name" ## Response 200 fields (application/json): - `id` (integer) Internal identifier for locale entry Example: 1 - `country` (object, required) - `country.code` (string, required) ISO 3166 alpha-2 code representing country Example: "GB" - `country.name` (string, required) Name of country Example: "United Kingdom" - `currency` (object, required) - `currency.id` (integer) Internal identifier for currency entry Example: 1 - `currency.code` (string, required) ISO 4217 3-character currency code Example: "GBP" - `currency.symbol` (string, required) Currency symbol - `currency.majorCurrencyName` (string, required) Name of major currency - `currency.minorCurrencyName` (string, required) Name of minor currency - `currency.majorCurrencyFormat` (string, required) Format to use when displaying major currency - `currency.minorCurrencyFormat` (string, required) Format to use when displaying minor currency - `currency.salesTaxName` (string, required) Name used for sales tax in this currency ## Response 400 fields ## Response 401 fields ## Response 403 fields ## Response 500 fields