GET api/Master/GetDepartment

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of Department
NameDescriptionTypeAdditional information
department_ID

integer

None.

department_Name

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "department_ID": 1,
    "department_Name": "sample string 2"
  },
  {
    "department_ID": 1,
    "department_Name": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfDepartment xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/B2CAPIFrameWork.Models">
  <Department>
    <department_ID>1</department_ID>
    <department_Name>sample string 2</department_Name>
  </Department>
  <Department>
    <department_ID>1</department_ID>
    <department_Name>sample string 2</department_Name>
  </Department>
</ArrayOfDepartment>