Store Locale
Get Locale Settings
GET https://api.bigcommerce.com/stores/{store_hash}/v3/settings/store/localeRequest
Returns global locale settings.
Authentication
- X-Auth-Token in header
Parameters
- store_hash in path - string
- Accept in header with default of application/json - stringrequiredThe MIME type of the response body.
example
curl --request GET \
--url 'https://api.bigcommerce.com/stores/[store_hash]/v3/settings/store/locale' \
--header 'Content-Type: application/json' \
--header 'X-Auth-Token: {{token}}'
Response
Body
object | application/json
dataobject
The basic locale settings for a store, used to give shopper information about languages, countries, etc.
Example
{
"data": {
"default_shopper_language": "en",
"shopper_language_selection_method": "default_shopper_language",
"store_country": "United States"
},
"meta": {}
}
Update Locale Settings
PUT https://api.bigcommerce.com/stores/{store_hash}/v3/settings/store/localeRequest
Updates global locale settings.
Authentication
- X-Auth-Token in header
Parameters
- store_hash in path - string
- Accept in header with default of application/json - stringrequiredThe MIME type of the response body.
- Content-Type in header with default of application/json - stringrequiredThe MIME type of the request body.
Body
object | application/json
The basic locale settings for a store, used to give shopper information about languages, countries, etc.
default_shopper_languagestring
requiredExample: en, en-usDefault: en
shopper_language_selection_methodstring
Determines whether to display the storefront content in the shopperʼs browser language or the shopperʼs selected default language.
Available values:
browser
- language updates automatically based on the shopper browser language. Multiple languages are supported.
default_shopper_language
- content is displayed in a single language based on the set
default_shopper_language
. Only the selected language is supported.
- content is displayed in a single language based on the set
Allowed: browser | default_shopper_language
Example: default_shopper_languageDefault: default_shopper_language
store_countrystring
Default: United States
Example
{
"default_shopper_language": "en",
"shopper_language_selection_method": "default_shopper_language",
"store_country": "United States"
}
Response
Body
object | application/json
dataobject
The basic locale settings for a store, used to give shopper information about languages, countries, etc.
Example
{
"data": {
"default_shopper_language": "en",
"shopper_language_selection_method": "default_shopper_language",
"store_country": "United States"
},
"meta": {}
}
Did you find what you were looking for?