Candidate Hired event

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:

PropertyTypeDescription
jobobjectBasic job information
↳ idintegerJob identifier
↳ namestringJob name
↳ typestringJob type
↳ departmentCodestringJob department code
↳ roleCodestringJob role code
↳ branchCodestringJob branch code
↳ customFieldsarrayJob custom fields (id, title, value)
↳ departmentobjectJob department information (id, name, code and similarity)
↳ roleobjectJob role information (id, name, code and similarity)
↳ branchobjectJob branch (id, name and code)
applicationobjectApplication information
↳ idintegerApplication identifier
↳ vacancyCodestringVacancy code associated to the hiring
↳ scoredoubleScore of the candidate given by the Gupy platform
↳ partnerNamestringPartner name, the origin of the candidate
↳ preHiringInformationobjectPre-hiring step information (if this step is used in the job)
↳ tagsarrayTags applied to the application
↳ hiringDatedateDate of the hiring (filled by company user)
↳ hiringTypestring/enumType of hiring/contract
↳ hiringCustomFieldsobjectNotes on hiring the candidate
↳ currentStepobjectCurrent step of the application
↳ ↳ idintegerStep identifier
↳ ↳ namestringStep name
↳ ↳ typestring/enumStep type (register, online, offline or pre_hire)
↳ salaryobjectSalary informed on hiring information
↳ ↳ valuenumberSalary value
↳ ↳ currencystring/enumSalary currency (e.g.: R$, $, £, €)
candidateobjectCandidate information
↳ namestringCandidate name
↳ lastNamestringCandidate last name
↳ emailstringCandidate e-mail
↳ identificationDocumentstringThe identification document of the candidate (in Brazil is the CPF number)
↳ countryOfOriginstringCountry of origin of the candidate (eg. Brasil)
↳ birthdatestringBirth date of the candidate
↳ addressZipCodestringAddress zip code
↳ addressStreetstringAddress street name
↳ addressNumberstringAddress number/complement
↳ addressCitystringAddress city
↳ addressStatestringAddress state full name
↳ addressStateShortNamestringAddress state short name (eg. SP)
↳ addressCountrystringAddress country
↳ addressCountryShortNamestringCountry short name (eg. BR)
↳ mobileNumberstringMobile phone number
↳ phoneNumberstringPhone number
↳ schoolingstring/enumCandidate schooling
↳ schoolingStatusstring/enumCandidate schooling status
↳ disabilitiesbooleanCandidate is a person with disabilities
↳ genderstring/enumCandidate gender (Male, Female, Other, NotInformed)
userobjectThe user who moved the application to hired.
↳ idintegerUser identifier
↳ namestringUser name
↳ emailstringUser email
↳ codestringUser 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
      }
    }
  }