GET api/CMS/deptcms/DeptContents?DeptID={DeptID}

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
DeptID
No documentation available.

Define this parameter in the request URI.

Response Information

No documentation available.

Response body formats

application/json, text/json

Sample:
[
  {
    "DeptContentID": 1,
    "DeptMenuName": "sample string 2",
    "HasSubMenu": true
  },
  {
    "DeptContentID": 1,
    "DeptMenuName": "sample string 2",
    "HasSubMenu": true
  },
  {
    "DeptContentID": 1,
    "DeptMenuName": "sample string 2",
    "HasSubMenu": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfCMSDeptContents xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SIST.CMS.ViewModel">
  <CMSDeptContents>
    <DeptContentID>1</DeptContentID>
    <DeptMenuName>sample string 2</DeptMenuName>
    <HasSubMenu>true</HasSubMenu>
  </CMSDeptContents>
  <CMSDeptContents>
    <DeptContentID>1</DeptContentID>
    <DeptMenuName>sample string 2</DeptMenuName>
    <HasSubMenu>true</HasSubMenu>
  </CMSDeptContents>
  <CMSDeptContents>
    <DeptContentID>1</DeptContentID>
    <DeptMenuName>sample string 2</DeptMenuName>
    <HasSubMenu>true</HasSubMenu>
  </CMSDeptContents>
</ArrayOfCMSDeptContents>