GET api/SystemApi/GetAllEmployee

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of Employee
NameDescriptionTypeAdditional information
Id

integer

None.

name

string

None.

Phone

string

None.

Salary

decimal number

None.

User_Id

integer

None.

Response Formats

application/json, text/json

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

application/xml, text/xml

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