Returns a list of all candidates that have been hired/onboarded

In order to access this endpoint ensure that you do a GET request with an Authorization header containing your access token.

Headers:
Authorization : {token}

Result codes

403 Forbidden
200 OK
400 Bad request
500 Internal server error

Result

One or more hired/onboarded candidate objects will be returned and will have the following fields:

Field NameTypeDescription
IdintThe candidate identifier
FirstNamestringCandidate's first name
LastNamestringCandidate's last name
VacancyIdintVacancy Identifier
JobTitlestringEither job title offer or if not present, vacancy job title
DivisionIdintInternal Id for Division for this vacancy in the company
BusinessUnitIdintInternal Id for Business Unit for this vacancy in the company
DepartmentIdintInternal Id for Department for this vacancy in the company
JobGradeIdintUnique identifier for the job grade ( null if custom job grades are not enabled in hiring preferences)
JobGradeNamestringName of the job grade
EmploymentTypeIdintInternal id for type of employment.
1 = Permanent
2 = Contract
3 = Part-time
4 = Internship
5 = Volunteer
EmploymentTypestringName of the type of employment (see EmploymentTypeId)
EthnicityIdint1 African
2 Coloured
3 Indian/Asian
4 White
GenderIdintMale = 1,
Female = 2
Disabilityboolean (true, false)Disabled candidate
NationalityIdintSouthAfrican = 1,
NonSouthAfrican = 2
StartDatedatetimeThe date and time when the job grade was marked as deleted.Will only contain a value if the job grade was deleted, otherwise this will be null
SalarystringSalary Rate at which the Candidate was onboarded
SaIdNumberstringSouth African identification number
CurrentSalarystringCurrent Salary
CurrentBenefitsstringCurrent Benefits

Response Format

[
    {
        "Id": 0,
        "FirstName": "FirstName A",
        "LastName": "LastName A",
        "VacancyId": 0,
        "JobTitle": "Test Engineer 4",
        "DivisionId": 22,
        "BusinessUnitId": null,
        "DepartmentId": 3,
        "JobGradeId": 1,
        "JobGradeName": "Custom Job Grade",
        "EmploymentTypeId": 1,
        "EmploymentType": "Permanent",
        "EthnicityId": 4,
        "GenderId": 1,
        "Disability": false,
        "NationalityId": 1,
        "StartDate": "2021-08-31T00:00:00",
        "Salary": "45000"
    },
    {
        "Id": 1,
        "FirstName": "FirstName B",
        "LastName": "LastName B",
        "VacancyId": 0,
        "JobTitle": "Test Engineer 4",
        "DivisionId": 22,
        "BusinessUnitId": null,
        "DepartmentId": 3,
        "JobGradeId": 1,
        "JobGradeName": "Custom Job Grade",
        "EmploymentTypeId": 1,
        "EmploymentType": "Permanent",
        "EthnicityId": 3,
        "GenderId": 2,
        "Disability": false,
        "NationalityId": 1,
        "StartDate": "2021-08-31T00:00:00",
        "Salary": "65000",
        "SaIdNumber": "2001014800086",
				"CurrentSalary":60000,
				"CurrentBenefits": "Commuter benefits"
    }
]