GET countries

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of Country
NameDescriptionTypeAdditional information
Iso3Code

string

None.

Caption

string

None.

TelephoneCode

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Iso3Code": "sample string 1",
    "Caption": "sample string 2",
    "TelephoneCode": "sample string 3"
  },
  {
    "Iso3Code": "sample string 1",
    "Caption": "sample string 2",
    "TelephoneCode": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfCountry xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GBI.WebAPI.RegistrationGateway.Business.Models.Registration">
  <Country>
    <Caption>sample string 2</Caption>
    <Iso3Code>sample string 1</Iso3Code>
    <TelephoneCode>sample string 3</TelephoneCode>
  </Country>
  <Country>
    <Caption>sample string 2</Caption>
    <Iso3Code>sample string 1</Iso3Code>
    <TelephoneCode>sample string 3</TelephoneCode>
  </Country>
</ArrayOfCountry>