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| Name | Description | Type | Additional 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}. |
string |
None. |
| DecimalSeparator |
The character used as the decimal separator in the prices. |
string |
None. |
| DecimalPlaces |
The number of decimal places in the price after the decimal separator. |
integer |
None. |
Response Formats
application/json, text/json
[
{
"ID": "676331bf-8db6-417b-860d-611dcf10d401",
"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": "676331bf-8db6-417b-860d-611dcf10d401",
"FriendlyID": 2,
"Name": "sample string 3",
"LanguageCode": "sample string 4",
"CountryCode": "sample string 5",
"CurrencyFormat": "sample string 6",
"DecimalSeparator": "sample string 7",
"DecimalPlaces": 8
}
]