GET api/states/{stateId}/sections
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| stateId | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of StateSectionDetail| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| StateId | globally unique identifier |
None. |
|
| SectionId | globally unique identifier |
None. |
|
| Name | string |
None. |
|
| OrderIndex | integer |
None. |
|
| ParentSectionId | globally unique identifier |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": "7f4bc966-34f4-4c9f-8586-0bc07e93ce9a",
"StateId": "f84fbd77-ea4a-432b-ba59-1b43e8e03721",
"SectionId": "ad57280f-6c16-4393-9388-6b4db7bf154a",
"Name": "sample string 4",
"OrderIndex": 5,
"ParentSectionId": "1869da5d-ad65-4146-98cd-d339777a9011"
},
{
"Id": "7f4bc966-34f4-4c9f-8586-0bc07e93ce9a",
"StateId": "f84fbd77-ea4a-432b-ba59-1b43e8e03721",
"SectionId": "ad57280f-6c16-4393-9388-6b4db7bf154a",
"Name": "sample string 4",
"OrderIndex": 5,
"ParentSectionId": "1869da5d-ad65-4146-98cd-d339777a9011"
}
]
application/xml, text/xml
Sample:
<ArrayOfStateSectionDetail xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Admin.DTO">
<StateSectionDetail>
<Id>7f4bc966-34f4-4c9f-8586-0bc07e93ce9a</Id>
<Name>sample string 4</Name>
<OrderIndex>5</OrderIndex>
<ParentSectionId>1869da5d-ad65-4146-98cd-d339777a9011</ParentSectionId>
<SectionId>ad57280f-6c16-4393-9388-6b4db7bf154a</SectionId>
<StateId>f84fbd77-ea4a-432b-ba59-1b43e8e03721</StateId>
</StateSectionDetail>
<StateSectionDetail>
<Id>7f4bc966-34f4-4c9f-8586-0bc07e93ce9a</Id>
<Name>sample string 4</Name>
<OrderIndex>5</OrderIndex>
<ParentSectionId>1869da5d-ad65-4146-98cd-d339777a9011</ParentSectionId>
<SectionId>ad57280f-6c16-4393-9388-6b4db7bf154a</SectionId>
<StateId>f84fbd77-ea4a-432b-ba59-1b43e8e03721</StateId>
</StateSectionDetail>
</ArrayOfStateSectionDetail>