GET 17.0/app/system/countries

Description

Gets a list of all countries

URI Parameters

None.

None.

None.

Collection of Country
Name Description Type Additional information
Id

integer

None.

Description

string

None.

Type

CountryType

None.

DiallingCode

string

None.

application/json, text/json

Sample:
[
  {
    "id": 1,
    "description": "sample string 2",
    "type": 0,
    "diallingCode": "sample string 3"
  },
  {
    "id": 1,
    "description": "sample string 2",
    "type": 0,
    "diallingCode": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfCountry xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Country>
    <Id>1</Id>
    <Description>sample string 2</Description>
    <Type>Generic</Type>
    <DiallingCode>sample string 3</DiallingCode>
  </Country>
  <Country>
    <Id>1</Id>
    <Description>sample string 2</Description>
    <Type>Generic</Type>
    <DiallingCode>sample string 3</DiallingCode>
  </Country>
</ArrayOfCountry>