GET api/admin/sections/GetSection?SectionID={SectionID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| SectionID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ApiResponseOfSectionGetModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean |
None. |
|
| Message | string |
None. |
|
| Data | SectionGetModel |
None. |
Response Formats
application/json, text/json
Sample:
{
"Success": true,
"Message": "sample string 2",
"Data": {
"SectionID": 1,
"SectionName": "sample string 2",
"TableName": "sample string 3",
"UserID": "sample string 4"
}
}
application/xml, text/xml
Sample:
<ApiResponseOfSectionGetModelu2S72hLb xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tourism.Entities.Models">
<Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/Tourism.Entities.CustomMasterModels">
<d2p1:SectionID>1</d2p1:SectionID>
<d2p1:SectionName>sample string 2</d2p1:SectionName>
<d2p1:TableName>sample string 3</d2p1:TableName>
<d2p1:UserID>sample string 4</d2p1:UserID>
</Data>
<Message>sample string 2</Message>
<Success>true</Success>
</ApiResponseOfSectionGetModelu2S72hLb>