POST api/SystemApi/AddEmployee

Request Information

URI Parameters

None.

Body Parameters

Employee
NameDescriptionTypeAdditional information
Id

integer

None.

name

string

None.

Phone

string

None.

Salary

decimal number

None.

User_Id

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "name": "sample string 2",
  "Phone": "sample string 3",
  "Salary": 4.1,
  "User_Id": 5
}

application/xml, text/xml

Sample:
<Employee xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AlsamanodyPosApi.Models">
  <Id>1</Id>
  <Phone>sample string 3</Phone>
  <Salary>4.1</Salary>
  <User_Id>5</User_Id>
  <name>sample string 2</name>
</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.