This notification can be sent when a candidate is marked as hired in our platform.
The request will be sent right you fill in the Hiring Information as show bellow:
Notification properties
The notification will be sent with the following properties:
Property | Type | Description |
---|---|---|
job | object | Basic job information |
↳ id | integer | Job identifier |
↳ name | string | Job name |
↳ type | string/enum | Job type (vacancy_type_apprentice, vacancy_type_associate, vacancy_type_talent_pool, vacancy_type_effective, vacancy_type_internship, vacancy_type_summer, vacancy_type_temporary, vacancy_type_outsource, vacancy_type_trainee, vacancy_type_volunteer, vacancy_legal_entity, vacancy_type_lecturer, vacancy_type_freelancer, vacancy_type_autonomous) |
↳ departmentCode | string | Job department code |
↳ roleCode | string | Job role code |
↳ branchCode | string | Job branch code |
↳ customFields | array | Job custom fields (id, title, value) |
↳ department | object | Job department information (id, name, code and similarity) |
↳ role | object | Job role information (id, name, code and similarity) |
↳ branch | object | Job branch (id, name and code) |
application | object | Application information |
↳ id | integer | Application identifier |
↳ vacancyCode | string | Vacancy code associated to the hiring |
↳ score | double | Score of the candidate given by the Gupy platform |
↳ partnerName | string | Partner name, the origin of the candidate |
↳ preHiringInformation | object | Pre-hiring step information (if this step is used in the job) |
↳ tags | array | Tags applied to the application |
↳ hiringDate | date | Date of the hiring (filled by company user) |
↳ hiringType | string/enum | Type of hiring/contract (employee_admission, employee_readmission, employee_reintegration, unrelated_worker_hiring, internal_transfer) |
↳ hiringCustomFields | object | Notes on hiring the candidate |
↳ currentStep | object | Current step of the application |
↳ ↳ id | integer | Step identifier |
↳ ↳ name | string | Step name |
↳ ↳ type | string/enum | Step type (register, online, offline or pre_hire) |
↳ salary | object | Salary informed on hiring information |
↳ ↳ value | number | Salary value |
↳ ↳ currency | string/enum | Salary currency (e.g.: R$, $, £, €) |
candidate | object | Candidate information |
↳ name | string | Candidate name |
↳ lastName | string | Candidate last name |
string | Candidate e-mail | |
↳ identificationDocument | string | The identification document of the candidate (in Brazil is the CPF number) |
↳ countryOfOrigin | string | Country of origin of the candidate (eg. Brasil) |
↳ birthdate | string | Birth date of the candidate |
↳ addressZipCode | string | Address zip code |
↳ addressStreet | string | Address street name |
↳ addressNumber | string | Address number/complement |
↳ addressCity | string | Address city |
↳ addressState | string | Address state full name |
↳ addressStateShortName | string | Address state short name (eg. SP) |
↳ addressCountry | string | Address country |
↳ addressCountryShortName | string | Country short name (eg. BR) |
↳ mobileNumber | string | Mobile phone number |
↳ phoneNumber | string | Phone number |
↳ schooling | string/enum | Candidate schooling (elementary_school, high_school, technical_course, technological, graduation, post_graduate, master_degree, phd) |
↳ schoolingStatus | string/enum | Candidate schooling status (complete, in_progress, incomplete) |
↳ disabilities | boolean | Candidate is a person with disabilities |
↳ gender | string/enum | Candidate gender (Male, Female, Other, NotInformed) |
user | object | The user who moved the application to hired. |
↳ id | integer | User identifier |
↳ name | string | User name |
string | User email | |
↳ code | string | User code |
{
"companyName": "ACME",
"id": "24e99765-8583-4be5-87ae-489c86642964",
"event": "candidate.hired",
"date": "2019-06-19T23:48:46.952Z",
"data": {
"job": {
"id": 19139,
"name": "Developer",
"type": "vacancy_type_effective",
"departmentCode": "380",
"roleCode": "9078",
"branchCode": "16",
"customFields": [
{
"id": "0ba5013e-1496-4853-8390-39de1b08f3td",
"title": "This is a custom field",
"value": "The value of custom field"
}
],
"department": {
"id": 45,
"code": "380",
"name": "App Development",
"similarity": "technology"
},
"role": {
"id": 56,
"code": "9078",
"name": "Developer",
"similarity": "developer"
},
"branch": {
"id": 1895,
"code": "16",
"name": "GUPY > BRANCH 1"
}
},
"application": {
"id": 2937132,
"vacancyCode": "ABC-123",
"score": 71.570454783086,
"partnerName": "gupy_public_page",
"preHiringInformation": {},
"tags": ["tagHired"],
"hiringDate": "2019-06-19T03:00:00.000Z",
"hiringType": "employee_admission",
"currentStep": {
"id": 86547,
"name": "Contratação",
"type": "final"
},
"salary": {
"value": 3000.15,
"currency": "R$"
}
},
"candidate": {
"id": 1999450,
"name": "John",
"lastName": "Doe",
"email": "[email protected]",
"identificationDocument": "25272626207",
"countryOfOrigin": "Brasil",
"birthdate": "1994-11-16",
"addressZipCode": "01414-905",
"addressStreet": "Rua Haddock Lobo",
"addressNumber": "595 - 10º andar",
"addressCity": "São Paulo",
"addressState": "São Paulo",
"addressStateShortName": "SP",
"addressCountry": "Brasil",
"addressCountryShortName": "BR",
"mobileNumber": "+5511999990000",
"phoneNumber": "+551130000000",
"schooling": "technical_course",
"schoolingStatus": "complete",
"disabilities": false,
"gender": "Male"
},
"user": {
"id": 124562,
"name": "Jane Doe",
"email": "[email protected]",
"code": 22
}
}
}