GET api/Employees/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

Employees
NameDescriptionTypeAdditional information
ID

integer

None.

FirstName

string

None.

LastName

string

None.

Gender

string

None.

Salary

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "FirstName": "sample string 2",
  "LastName": "sample string 3",
  "Gender": "sample string 4",
  "Salary": 1
}

application/xml, text/xml

Sample:
<Employees xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EmployeeDataAccess">
  <FirstName>sample string 2</FirstName>
  <Gender>sample string 4</Gender>
  <ID>1</ID>
  <LastName>sample string 3</LastName>
  <Salary>1</Salary>
</Employees>