GET api/Employee?clientId={clientId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
clientId

string

None.

Body Parameters

None.

Response Information

Resource Description

Collection of EmployeeList
NameDescriptionTypeAdditional information
employeeNo

integer

None.

name

string

None.

title

string

None.

mobilePhone

string

None.

postalNo

string

None.

emailAddress

string

None.

isOAuthUser

boolean

None.

orgUnit1

integer

None.

associateProcessing

integer

None.

group2

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "employeeNo": 1,
    "name": "sample string 1",
    "title": "sample string 2",
    "mobilePhone": "sample string 3",
    "postalNo": "sample string 4",
    "emailAddress": "sample string 5",
    "isOAuthUser": true,
    "orgUnit1": 1,
    "associateProcessing": 1,
    "group2": 1
  },
  {
    "employeeNo": 1,
    "name": "sample string 1",
    "title": "sample string 2",
    "mobilePhone": "sample string 3",
    "postalNo": "sample string 4",
    "emailAddress": "sample string 5",
    "isOAuthUser": true,
    "orgUnit1": 1,
    "associateProcessing": 1,
    "group2": 1
  }
]

application/xml, text/xml

Sample:
<ArrayOfEmployeeList xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <EmployeeList>
    <employeeNo>1</employeeNo>
    <name>sample string 1</name>
    <title>sample string 2</title>
    <mobilePhone>sample string 3</mobilePhone>
    <postalNo>sample string 4</postalNo>
    <emailAddress>sample string 5</emailAddress>
    <isOAuthUser>true</isOAuthUser>
    <orgUnit1>1</orgUnit1>
    <associateProcessing>1</associateProcessing>
    <group2>1</group2>
  </EmployeeList>
  <EmployeeList>
    <employeeNo>1</employeeNo>
    <name>sample string 1</name>
    <title>sample string 2</title>
    <mobilePhone>sample string 3</mobilePhone>
    <postalNo>sample string 4</postalNo>
    <emailAddress>sample string 5</emailAddress>
    <isOAuthUser>true</isOAuthUser>
    <orgUnit1>1</orgUnit1>
    <associateProcessing>1</associateProcessing>
    <group2>1</group2>
  </EmployeeList>
</ArrayOfEmployeeList>