POST CreateEmployee

Request Information

URI Parameters

None.

Body Parameters

Employee
NameDescriptionTypeAdditional information
Id

integer

None.

EmployeeName

string

None.

FatherName

string

None.

Designation

string

None.

MobileNo

string

None.

IsDeleted

integer

None.

Approved

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "EmployeeName": "sample string 2",
  "FatherName": "sample string 3",
  "Designation": "sample string 4",
  "MobileNo": "sample string 5",
  "IsDeleted": 6,
  "Approved": 7
}

application/xml, text/xml

Sample:
<Employee xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UrestComplaintWebApi.Models">
  <Approved>7</Approved>
  <Designation>sample string 4</Designation>
  <EmployeeName>sample string 2</EmployeeName>
  <FatherName>sample string 3</FatherName>
  <Id>1</Id>
  <IsDeleted>6</IsDeleted>
  <MobileNo>sample string 5</MobileNo>
</Employee>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.