PUT api/Employees/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

Employees
NameDescriptionTypeAdditional information
ID

integer

None.

FirstName

string

None.

LastName

string

None.

Gender

string

None.

Salary

integer

None.

Request 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/WebApplication6.Models">
  <FirstName>sample string 2</FirstName>
  <Gender>sample string 4</Gender>
  <ID>1</ID>
  <LastName>sample string 3</LastName>
  <Salary>1</Salary>
</Employees>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.