GET api/Employees
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of EmployeesName | Description | Type | Additional information |
---|---|---|---|
ID | integer |
None. |
|
FirstName | string |
None. |
|
LastName | string |
None. |
|
Gender | string |
None. |
|
Salary | integer |
None. |
Response Formats
application/json, text/json
Sample:
[ { "ID": 1, "FirstName": "sample string 2", "LastName": "sample string 3", "Gender": "sample string 4", "Salary": 1 }, { "ID": 1, "FirstName": "sample string 2", "LastName": "sample string 3", "Gender": "sample string 4", "Salary": 1 } ]
application/xml, text/xml
Sample:
<ArrayOfEmployees xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EmployeeDataAccess"> <Employees> <FirstName>sample string 2</FirstName> <Gender>sample string 4</Gender> <ID>1</ID> <LastName>sample string 3</LastName> <Salary>1</Salary> </Employees> <Employees> <FirstName>sample string 2</FirstName> <Gender>sample string 4</Gender> <ID>1</ID> <LastName>sample string 3</LastName> <Salary>1</Salary> </Employees> </ArrayOfEmployees>