This notification can be sent when a recommendation is made.
Notification properties
The notification will be sent with the following properties:
Property | Type | Description |
---|---|---|
job | object | Job information |
↳id | integer | Job identifier |
↳name | string | Job name |
↳code | string | Job code |
↳status | string/enum | Job status |
candidate | object | Candidate information |
↳id | integer | Candidate identifier |
↳name | string | Candidate name |
string | Candidate e-mail | |
↳lastName | string | Candidate last name |
↳gender | string/enum | Candidate gender |
↳disabilities | boolean | Candidate has disabilities |
↳schooling | string/enum | Candidate schooling |
↳schoolingStatus | string/enum | Candidate schooling status |
↳lastProfessionalExperienceRole | string | Candidate last professional experience role |
↳identificationDocument | string | The identification document of the candidate (in Brazil is the CPF number) |
↳countryOfOrigin | string | Country of origin |
↳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 |
↳addressStateShortName | string | Address state short name (eg. SP) |
↳addressCountryShortName | string | Country short name (eg. BR) |
↳mobileNumber | string | Mobile phone number |
{
"companyName": "ACME",
"id": "14e80765-7525-4bf5-87ae-411c86652962",
"event": "job.new-recommendation",
"date": "2023-12-05T17:48:23.000Z",
"data": {
"job": {
"id": 102030,
"name": "Backend Engineer",
"code": "123-45678",
"status": "published"
},
"candidate": {
"id": 654321,
"name": "John Doe",
"email": "[email protected]",
"lastName": "Doe",
"gender": "M",
"disabilities": false,
"schooling": "graduation",
"schoolingStatus": "complete",
"lastProfessionalExperienceRole": "Senior Software Engineer",
"identificationDocument": "30050080010",
"countryOfOrigin": "BR",
"birthdate": "2000-01-01",
"addressZipCode": "15050505",
"addressStreet": "Rua 1 de Janeiro",
"addressNumber": "1000",
"addressCity": "São Paulo",
"addressStateShortName": "SP",
"addressCountryShortName": "BR",
"mobileNumber": "11991234567"
}
}
}