GET
api/v1/get-section-list?clientId={clientId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| clientId | integer |
Required |
Response Information
Description:
Return type: Collection of SectionListModel
Response Formats
application/json, text/json
[
{
"SectionMasterId": 1,
"Name": "sample string 2"
},
{
"SectionMasterId": 1,
"Name": "sample string 2"
}
]
text/html
[{"SectionMasterId":1,"Name":"sample string 2"},{"SectionMasterId":1,"Name":"sample string 2"}]
application/xml, text/xml
<ArrayOfSectionListModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FDCMSAdminAPI.Models.Blogs">
<SectionListModel>
<Name>sample string 2</Name>
<SectionMasterId>1</SectionMasterId>
</SectionListModel>
<SectionListModel>
<Name>sample string 2</Name>
<SectionMasterId>1</SectionMasterId>
</SectionListModel>
</ArrayOfSectionListModel>
