GET api/V3/Employee/list

Lists all the Employees

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of V3.Employee
NameDescriptionTypeAdditional information
Name

Name of the employee

string

None.

EmployeeGuid

Guid of the employee

string

None.

EmployeeERPId

Erp Id of the Employee

string

None.

LocalName

Local name if specified

string

None.

EmployeeType

EmployeeType if specified

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Name": "sample string 1",
    "EmployeeGuid": "sample string 2",
    "EmployeeERPId": "sample string 3",
    "LocalName": "sample string 4",
    "EmployeeType": "sample string 5"
  },
  {
    "Name": "sample string 1",
    "EmployeeGuid": "sample string 2",
    "EmployeeERPId": "sample string 3",
    "LocalName": "sample string 4",
    "EmployeeType": "sample string 5"
  }
]

application/xml, text/xml

Sample:
<ArrayOfEmployee xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ExternalApis.V3.Models">
  <Employee>
    <EmployeeERPId>sample string 3</EmployeeERPId>
    <EmployeeGuid>sample string 2</EmployeeGuid>
    <EmployeeType>sample string 5</EmployeeType>
    <LocalName>sample string 4</LocalName>
    <Name>sample string 1</Name>
  </Employee>
  <Employee>
    <EmployeeERPId>sample string 3</EmployeeERPId>
    <EmployeeGuid>sample string 2</EmployeeGuid>
    <EmployeeType>sample string 5</EmployeeType>
    <LocalName>sample string 4</LocalName>
    <Name>sample string 1</Name>
  </Employee>
</ArrayOfEmployee>