POST api/Masters/UpdateEmployee

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
employee
No documentation available.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "Id": "sample string 1",
  "Empname": "sample string 2",
  "Empcode": "sample string 3",
  "Desig": "sample string 4",
  "Email": "sample string 5",
  "Password": "sample string 6"
}

application/xml, text/xml

Sample:
<Employee xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/rsjhaapi.Models">
  <Desig>sample string 4</Desig>
  <Email>sample string 5</Email>
  <Empcode>sample string 3</Empcode>
  <Empname>sample string 2</Empname>
  <Id>sample string 1</Id>
  <Password>sample string 6</Password>
</Employee>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

No documentation available.

Response body formats

application/json, text/json

Sample:
{
  "Message": "sample string 1",
  "status": 2
}

application/xml, text/xml

Sample:
<Response xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/rsjhaapi.Models">
  <Message>sample string 1</Message>
  <status>2</status>
</Response>