GET api/ContentManagement/Detail/Sections?SectionId={SectionId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| SectionId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
SectionListModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Sections | Collection of Section |
None. |
|
| Request | RequestModel |
None. |
Response Formats
application/json, text/json
Sample:
{
"Sections": null,
"Request": {
"Status": 0,
"Description": "sample string 1"
}
}
application/xml, text/xml
Sample:
<SectionListModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MTBooking.Web.API.Models">
<Request>
<Description>sample string 1</Description>
<Status>Ok</Status>
</Request>
<Sections i:nil="true" />
</SectionListModel>