GET api/Section/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
SectionS| Name | Description | Type | Additional information |
|---|---|---|---|
| SectionID | integer |
None. |
|
| Name | string |
None. |
|
| ParentSectionID | integer |
None. |
|
| DisplayOrder | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"SectionID": 1,
"Name": "sample string 2",
"ParentSectionID": 3,
"DisplayOrder": 4
}
application/xml, text/xml
Sample:
<SectionS xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/iCircleCommon"> <DisplayOrder>4</DisplayOrder> <Name>sample string 2</Name> <ParentSectionID>3</ParentSectionID> <SectionID>1</SectionID> </SectionS>