GET api/admin/sections/AllSections
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of SectionDropdownModel| Name | Description | Type | Additional information |
|---|---|---|---|
| SectionID | integer |
None. |
|
| SectionName | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"SectionID": 1,
"SectionName": "sample string 2"
},
{
"SectionID": 1,
"SectionName": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfSectionDropdownModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tourism.Entities.CustomMasterModels">
<SectionDropdownModel>
<SectionID>1</SectionID>
<SectionName>sample string 2</SectionName>
</SectionDropdownModel>
<SectionDropdownModel>
<SectionID>1</SectionID>
<SectionName>sample string 2</SectionName>
</SectionDropdownModel>
</ArrayOfSectionDropdownModel>