GET api/Country
Get all alowed in system counties as array.
Response Information
Response body formats
application/json, text/json
Sample:
[ { "countryId": 1, "countryName": "sample string 2", "countryIntlCode": "sample string 3", "phoneCode": "sample string 4", "jurisdictionCode": "sample string 5", "locales": "sample string 6" }, { "countryId": 1, "countryName": "sample string 2", "countryIntlCode": "sample string 3", "phoneCode": "sample string 4", "jurisdictionCode": "sample string 5", "locales": "sample string 6" }, { "countryId": 1, "countryName": "sample string 2", "countryIntlCode": "sample string 3", "phoneCode": "sample string 4", "jurisdictionCode": "sample string 5", "locales": "sample string 6" } ]
application/xml, text/xml
Sample:
<ArrayOfCountry xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PlayCode.DataContracts.Content"> <Country> <CountryId>1</CountryId> <CountryIntlCode>sample string 3</CountryIntlCode> <CountryName>sample string 2</CountryName> <JurisdictionCode>sample string 5</JurisdictionCode> <Locales>sample string 6</Locales> <PhoneCode>sample string 4</PhoneCode> </Country> <Country> <CountryId>1</CountryId> <CountryIntlCode>sample string 3</CountryIntlCode> <CountryName>sample string 2</CountryName> <JurisdictionCode>sample string 5</JurisdictionCode> <Locales>sample string 6</Locales> <PhoneCode>sample string 4</PhoneCode> </Country> <Country> <CountryId>1</CountryId> <CountryIntlCode>sample string 3</CountryIntlCode> <CountryName>sample string 2</CountryName> <JurisdictionCode>sample string 5</JurisdictionCode> <Locales>sample string 6</Locales> <PhoneCode>sample string 4</PhoneCode> </Country> </ArrayOfCountry>