Job New Recommendation

This notification can be sent when a recommendation is made.

Notification properties

The notification will be sent with the following properties:

PropertyTypeDescription
jobobjectJob information
↳idintegerJob identifier
↳namestringJob name
↳codestringJob code
↳statusstring/enumJob status
candidateobjectCandidate information
↳idintegerCandidate identifier
↳namestringCandidate name
↳emailstringCandidate e-mail
↳lastNamestringCandidate last name
↳genderstring/enumCandidate gender
↳disabilitiesbooleanCandidate has disabilities
↳schoolingstring/enumCandidate schooling
↳schoolingStatusstring/enumCandidate schooling status
↳lastProfessionalExperienceRolestringCandidate last professional experience role
↳identificationDocumentstringThe identification document of the candidate (in Brazil is the CPF number)
↳countryOfOriginstringCountry of origin
↳birthdatestringBirth date of the candidate
↳addressZipCodestringAddress zip code
↳addressStreetstringAddress street name
↳addressNumberstringAddress number/complement
↳addressCitystringAddress city
↳addressStateShortNamestringAddress state short name (eg. SP)
↳addressCountryShortNamestringCountry short name (eg. BR)
↳mobileNumberstringMobile 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"
    }
  }
}