GET api/stateProvincesSimple

Gets a list of all state-provinces.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

A collection of StateProvincesSimpleViewModel objects.

Collection of Cyberlogic.eTourism.Domain.ViewModels.Location.StateProvinceSimpleViewModel
NameDescriptionTypeAdditional information
Id

integer

None.

Name

string

None.

CountryId

integer

None.

CountryName

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "Name": "sample string 2",
    "CountryId": 3,
    "CountryName": "sample string 4"
  },
  {
    "Id": 1,
    "Name": "sample string 2",
    "CountryId": 3,
    "CountryName": "sample string 4"
  }
]

text/html

Sample:
[{"Id":1,"Name":"sample string 2","CountryId":3,"CountryName":"sample string 4"},{"Id":1,"Name":"sample string 2","CountryId":3,"CountryName":"sample string 4"}]

application/xml, text/xml

Sample:
<ArrayOfStateProvinceSimpleViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Cyberlogic.eTourism.Domain.ViewModels.Location">
  <StateProvinceSimpleViewModel>
    <CountryId>3</CountryId>
    <CountryName>sample string 4</CountryName>
    <Id>1</Id>
    <Name>sample string 2</Name>
  </StateProvinceSimpleViewModel>
  <StateProvinceSimpleViewModel>
    <CountryId>3</CountryId>
    <CountryName>sample string 4</CountryName>
    <Id>1</Id>
    <Name>sample string 2</Name>
  </StateProvinceSimpleViewModel>
</ArrayOfStateProvinceSimpleViewModel>