GET States?idCountry={idCountry}&page={page}&pageSize={pageSize}

Gets all the states, represented as StateDto.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
idCountry

The ID of Country

globally unique identifier

Required

page

The page (optional, 1 by default).

integer

Default value is 1

pageSize

The page size (optional, 50 by default).

integer

Default value is 50

Body Parameters

None.

Response Information

Resource Description

A collection of states.

Collection of StateDto
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

IdCountry

globally unique identifier

None.

Description

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": "1a451267-0994-4f03-94df-b2729a199924",
    "IdCountry": "0295d6d3-1d62-4394-ae3c-097439b4a4e6",
    "Description": "sample string 3"
  },
  {
    "Id": "1a451267-0994-4f03-94df-b2729a199924",
    "IdCountry": "0295d6d3-1d62-4394-ae3c-097439b4a4e6",
    "Description": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfStateDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ationet.Model">
  <StateDto>
    <Description>sample string 3</Description>
    <Id>1a451267-0994-4f03-94df-b2729a199924</Id>
    <IdCountry>0295d6d3-1d62-4394-ae3c-097439b4a4e6</IdCountry>
  </StateDto>
  <StateDto>
    <Description>sample string 3</Description>
    <Id>1a451267-0994-4f03-94df-b2729a199924</Id>
    <IdCountry>0295d6d3-1d62-4394-ae3c-097439b4a4e6</IdCountry>
  </StateDto>
</ArrayOfStateDto>