GET api/HRMS/get_Department

No documentation available.

Response Information

No documentation available.

Response body formats

application/json, text/json

Sample:
{
  "department": [
    {
      "Dept_code": "sample string 1",
      "Dept_Name": "sample string 2"
    },
    {
      "Dept_code": "sample string 1",
      "Dept_Name": "sample string 2"
    },
    {
      "Dept_code": "sample string 1",
      "Dept_Name": "sample string 2"
    }
  ]
}

application/xml, text/xml

Sample:
<departmentlist xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Axpress.Models">
  <department>
    <Department>
      <Dept_Name>sample string 2</Dept_Name>
      <Dept_code>sample string 1</Dept_code>
    </Department>
    <Department>
      <Dept_Name>sample string 2</Dept_Name>
      <Dept_code>sample string 1</Dept_code>
    </Department>
    <Department>
      <Dept_Name>sample string 2</Dept_Name>
      <Dept_code>sample string 1</Dept_code>
    </Department>
  </department>
</departmentlist>