Application Created event

This notification can be sent in the following occasions:

  • when a candidate applies to a job
  • when a candidate is added to a job by the company.

Notification properties

The notification will be sent with the following properties:

PropertyTypeDescription
jobobjectBasic job information
↳ idintegerJob identifier
↳ namestringJob name
↳ 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
↳ idnumberApplication identifier
↳ scoredoubleScore of the candidate given by the Gupy platform
↳ partnerNamestringPartner name, the origin of the candidate
↳ tagsarrayTags applied to the application
↳ currentStepobjectCurrent step of the application
↳ ↳ idintegerStep identifier
↳ ↳ namestringStep name
↳ ↳ typestring/enumStep type (register, online, offline or pre_hire)
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)
{
  "companyName": "ACME",
  "id": "24e99765-8583-4be5-87ae-489c86642964",
  "event": "application.created",
  "date": "2019-06-19T23:48:46.952Z",
  "data": {
    "job": {
      "id": 19139,
      "name": "Developer",
      "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,
      "score": 71.570454783086,
      "partnerName": "glassdoor",
      "tags": ["tag 1", "tag 2"],
      "currentStep": {
        "id": 86546,
        "name": "Cadastro",
        "type": "register"
      } 
    },
    "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"
    }
  }
}