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": "d803d4d8-23a5-4e27-8e09-230f5c04841c",
"StateId": "cc4d2a5e-fb01-4e68-bf73-b94ee5281215",
"SectionId": "9a81fc40-2551-4d3b-b9e4-e6fe8618fc0b",
"Name": "sample string 4",
"OrderIndex": 5,
"ParentSectionId": "679df5a5-1b5f-41b7-8c9c-73f76edf2e61"
},
{
"Id": "d803d4d8-23a5-4e27-8e09-230f5c04841c",
"StateId": "cc4d2a5e-fb01-4e68-bf73-b94ee5281215",
"SectionId": "9a81fc40-2551-4d3b-b9e4-e6fe8618fc0b",
"Name": "sample string 4",
"OrderIndex": 5,
"ParentSectionId": "679df5a5-1b5f-41b7-8c9c-73f76edf2e61"
}
]
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>d803d4d8-23a5-4e27-8e09-230f5c04841c</Id>
<Name>sample string 4</Name>
<OrderIndex>5</OrderIndex>
<ParentSectionId>679df5a5-1b5f-41b7-8c9c-73f76edf2e61</ParentSectionId>
<SectionId>9a81fc40-2551-4d3b-b9e4-e6fe8618fc0b</SectionId>
<StateId>cc4d2a5e-fb01-4e68-bf73-b94ee5281215</StateId>
</StateSectionDetail>
<StateSectionDetail>
<Id>d803d4d8-23a5-4e27-8e09-230f5c04841c</Id>
<Name>sample string 4</Name>
<OrderIndex>5</OrderIndex>
<ParentSectionId>679df5a5-1b5f-41b7-8c9c-73f76edf2e61</ParentSectionId>
<SectionId>9a81fc40-2551-4d3b-b9e4-e6fe8618fc0b</SectionId>
<StateId>cc4d2a5e-fb01-4e68-bf73-b94ee5281215</StateId>
</StateSectionDetail>
</ArrayOfStateSectionDetail>