GET icss/api/v1/account/countries

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

CountryListOutputModels
NameDescriptionTypeAdditional information
Items

Collection of CountryModels

None.

Response Formats

application/json, text/json

Sample:
{
  "Items": [
    {
      "CountryId": 1,
      "Name": "sample string 2"
    },
    {
      "CountryId": 1,
      "Name": "sample string 2"
    }
  ]
}

application/xml, text/xml

Sample:
<CountryListOutputModels xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ICSSQuickService.WebApi.Models">
  <Items>
    <CountryModels>
      <CountryId>1</CountryId>
      <Name>sample string 2</Name>
    </CountryModels>
    <CountryModels>
      <CountryId>1</CountryId>
      <Name>sample string 2</Name>
    </CountryModels>
  </Items>
</CountryListOutputModels>