GET api/Reports/GetCandidatessEthnicityDiversity

Used to get Dashboard data for ethnicity diversity monthly summary data for export

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of CandidateEthnicityDiversityDTO
NameDescriptionTypeAdditional information
Ethnicity

string

None.

EthnicityCount

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Ethnicity": "sample string 1",
    "EthnicityCount": 1
  },
  {
    "Ethnicity": "sample string 1",
    "EthnicityCount": 1
  }
]

text/xml

Sample:
<ArrayOfCandidateEthnicityDiversityDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RandstadWebAPI.Models.DTO">
  <CandidateEthnicityDiversityDTO>
    <Ethnicity>sample string 1</Ethnicity>
    <EthnicityCount>1</EthnicityCount>
  </CandidateEthnicityDiversityDTO>
  <CandidateEthnicityDiversityDTO>
    <Ethnicity>sample string 1</Ethnicity>
    <EthnicityCount>1</EthnicityCount>
  </CandidateEthnicityDiversityDTO>
</ArrayOfCandidateEthnicityDiversityDTO>

multipart/form-data

Sample:
<ArrayOfCandidateEthnicityDiversityDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RandstadWebAPI.Models.DTO"><CandidateEthnicityDiversityDTO><Ethnicity>sample string 1</Ethnicity><EthnicityCount>1</EthnicityCount></CandidateEthnicityDiversityDTO><CandidateEthnicityDiversityDTO><Ethnicity>sample string 1</Ethnicity><EthnicityCount>1</EthnicityCount></CandidateEthnicityDiversityDTO></ArrayOfCandidateEthnicityDiversityDTO>