GET v1/Cultures

Get a list with all available Cultures.

Request Information

Requires Authorization!

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

A list of the Culture objects.


Collection of Culture
NameDescriptionTypeAdditional information
Id

Gets or sets the identifier.

integer

Required

CultureCode

Gets or sets the culture code.

string

Required

Max length: 8

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "CultureCode": "sample string 2"
  },
  {
    "Id": 1,
    "CultureCode": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfCulture xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Culture>
    <Id>1</Id>
    <CultureCode>sample string 2</CultureCode>
  </Culture>
  <Culture>
    <Id>1</Id>
    <CultureCode>sample string 2</CultureCode>
  </Culture>
</ArrayOfCulture>