POST api/Policy360Claim/GetAllCountryListData

Gets all available country in the system

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

List of all country

Collection of Country
NameDescriptionTypeAdditional information
CountryName

string

None.

Response Formats

application/json, text/json

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

application/xml, text/xml

Sample:
<ArrayOfCountry xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GBG.AS.AgentPortal.Data.Models.SubmitClaim">
  <Country>
    <CountryName>sample string 1</CountryName>
  </Country>
  <Country>
    <CountryName>sample string 1</CountryName>
  </Country>
</ArrayOfCountry>