GET api/FindStudentorStaff?Code={Code}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
Code

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of FindStudentorStaff
NameDescriptionTypeAdditional information
id

integer

None.

type

string

None.

hod

integer

None.

dic

integer

None.

management

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "id": 1,
    "type": "sample string 2",
    "hod": 3,
    "dic": 4,
    "management": 5
  },
  {
    "id": 1,
    "type": "sample string 2",
    "hod": 3,
    "dic": 4,
    "management": 5
  }
]

application/xml, text/xml

Sample:
<ArrayOfFindStudentorStaff xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ImpresAPI.Controllers">
  <FindStudentorStaff>
    <dic>4</dic>
    <hod>3</hod>
    <id>1</id>
    <management>5</management>
    <type>sample string 2</type>
  </FindStudentorStaff>
  <FindStudentorStaff>
    <dic>4</dic>
    <hod>3</hod>
    <id>1</id>
    <management>5</management>
    <type>sample string 2</type>
  </FindStudentorStaff>
</ArrayOfFindStudentorStaff>