GET api/countries/{dataType}?languageCode={languageCode} Authentication required

Request

URI Parameters

NameDescriptionTypeAdditional information
dataType

enum (See Model)

Required

languageCode

string

Default value is

Response

Output : array of objects (See Model)

Ouput Sample

  • application/json, text/json :
  • [ { "isoCode": "FR", "name": "France", "continent": "Europe", "defaultLanguage": "FR" }, { "isoCode": "FR", "name": "France", "continent": "Europe", "defaultLanguage": "FR" } ]
  • application/xml, text/xml :
  • <ArrayOfCountry xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <Country> <Continent>Europe</Continent> <DefaultLanguage>FR</DefaultLanguage> <IsoCode>FR</IsoCode> <Name>France</Name> </Country> <Country> <Continent>Europe</Continent> <DefaultLanguage>FR</DefaultLanguage> <IsoCode>FR</IsoCode> <Name>France</Name> </Country> </ArrayOfCountry>