GET api/Reports/CurrentEmployeesByJobCatergory

Used to get Dashboard data for Current employees by Job category

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of CurrentEmployeesByJobCatergoryDTO
NameDescriptionTypeAdditional information
JobTitle

string

None.

EmployeeCount

integer

None.

ClientCode

string

None.

Period

string

None.

ClientName

string

None.

Response Formats

application/json, text/json

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

text/xml

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

multipart/form-data

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