GET api/Reports/CurrentEmployees

Used to get Dashboard data for Current employees

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of CurrentEmployeesDTO
NameDescriptionTypeAdditional information
EmployeeCount

integer

None.

ClientCode

string

None.

Period

string

None.

ClientName

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "EmployeeCount": 1,
    "ClientCode": "sample string 1",
    "Period": "sample string 2",
    "ClientName": "sample string 3"
  },
  {
    "EmployeeCount": 1,
    "ClientCode": "sample string 1",
    "Period": "sample string 2",
    "ClientName": "sample string 3"
  }
]

text/xml

Sample:
<ArrayOfCurrentEmployeesDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RandstadWebAPI.Models.DTO">
  <CurrentEmployeesDTO>
    <ClientCode>sample string 1</ClientCode>
    <ClientName>sample string 3</ClientName>
    <EmployeeCount>1</EmployeeCount>
    <Period>sample string 2</Period>
  </CurrentEmployeesDTO>
  <CurrentEmployeesDTO>
    <ClientCode>sample string 1</ClientCode>
    <ClientName>sample string 3</ClientName>
    <EmployeeCount>1</EmployeeCount>
    <Period>sample string 2</Period>
  </CurrentEmployeesDTO>
</ArrayOfCurrentEmployeesDTO>

multipart/form-data

Sample:
<ArrayOfCurrentEmployeesDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RandstadWebAPI.Models.DTO"><CurrentEmployeesDTO><ClientCode>sample string 1</ClientCode><ClientName>sample string 3</ClientName><EmployeeCount>1</EmployeeCount><Period>sample string 2</Period></CurrentEmployeesDTO><CurrentEmployeesDTO><ClientCode>sample string 1</ClientCode><ClientName>sample string 3</ClientName><EmployeeCount>1</EmployeeCount><Period>sample string 2</Period></CurrentEmployeesDTO></ArrayOfCurrentEmployeesDTO>