GET v1/store/cultures

Gets the cultures of the store.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Returns a list of the store's cultures.

Collection of CultureModel
NameDescriptionTypeAdditional information
ID

The unique ID of the culture.

globally unique identifier

None.

FriendlyID

The friendly ID of the culture.

integer

None.

Name

The name of the culture as written in the culture's language (e.g. "EspaƱol").

string

None.

LanguageCode

The language code according to the ISO 3166-1 standard (e.g. "en-US").

string

None.

CountryCode

The country code according to the ISO 3166-1 standard (e.g. "US").

string

None.

CurrencyFormat

The currency display format built using the following placeholders: {Amount} and {Symbol}.
E.g.:
"{Symbol}{Amount}" will be shown as $100
"{Amount}{Symbol}" will be shown as 100$

string

None.

DecimalSeparator

The character used as the decimal separator in the prices.
Usually it is a comma or a period.

string

None.

DecimalPlaces

The number of decimal places in the price after the decimal separator.
E.g.: $2.50 will be shown if the value is 2 and $2.5 will be shown if the value is 1.

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ID": "dc941aea-f399-4943-ab1a-69c6cea1758e",
    "FriendlyID": 2,
    "Name": "sample string 3",
    "LanguageCode": "sample string 4",
    "CountryCode": "sample string 5",
    "CurrencyFormat": "sample string 6",
    "DecimalSeparator": "sample string 7",
    "DecimalPlaces": 8
  },
  {
    "ID": "dc941aea-f399-4943-ab1a-69c6cea1758e",
    "FriendlyID": 2,
    "Name": "sample string 3",
    "LanguageCode": "sample string 4",
    "CountryCode": "sample string 5",
    "CurrencyFormat": "sample string 6",
    "DecimalSeparator": "sample string 7",
    "DecimalPlaces": 8
  }
]