GET forms/getCountries

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

GetCountriesResult
NameDescriptionTypeAdditional information
Countries

Collection of Country

None.

Response Formats

application/json, text/json

Sample:
{
  "Countries": [
    {
      "CountryName": "sample string 1",
      "CountryCode": "sample string 2"
    },
    {
      "CountryName": "sample string 1",
      "CountryCode": "sample string 2"
    }
  ]
}

application/xml, text/xml

Sample:
<GetCountriesResult xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Countries>
    <Country>
      <CountryName>sample string 1</CountryName>
      <CountryCode>sample string 2</CountryCode>
    </Country>
    <Country>
      <CountryName>sample string 1</CountryName>
      <CountryCode>sample string 2</CountryCode>
    </Country>
  </Countries>
</GetCountriesResult>