GET api/Employees/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

Employee
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:
<Employee 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>
  <LastName>sample string 3</LastName>
  <Salary>1</Salary>
  <id>1</id>
</Employee>