GET api/User/Countries

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of KiviCOM.API.Business.Users.CountryInfo
NameDescriptionTypeAdditional information
ID

integer

None.

CountryName

string

None.

CountryISO

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ID": 1,
    "CountryName": "sample string 2",
    "CountryISO": "sample string 3"
  },
  {
    "ID": 1,
    "CountryName": "sample string 2",
    "CountryISO": "sample string 3"
  }
]

text/xml

Sample:
<ArrayOfCountryInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/KiviCOM.API.Business.Users">
  <CountryInfo>
    <CountryISO>sample string 3</CountryISO>
    <CountryName>sample string 2</CountryName>
    <ID>1</ID>
  </CountryInfo>
  <CountryInfo>
    <CountryISO>sample string 3</CountryISO>
    <CountryName>sample string 2</CountryName>
    <ID>1</ID>
  </CountryInfo>
</ArrayOfCountryInfo>