Application Moved event

This notification can be sent when the candidate is moved to another step of the job, except reproved and dropped out.

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
↳ idnumberApplication identifier
↳ scoredoubleScore of the candidate given by the Gupy platform
↳ partnerNamestringPartner name, the origin of the candidate
↳ statusstringApplication status (give_up, reproved, in_process, hired)
↳ preHiringInformationobjectPre-hiring step information (if this step is used in the job)
↳ tagsarrayTags applied to the application
↳ currentStepobjectCurrent step of the application
↳ ↳ idintegerStep identifier
↳ ↳ namestringStep name
↳ ↳ typestring/enumStep type (register, online, offline, pre_hire, final)
↳ previousStepobjectPrevious step of the application
↳ ↳ idintegerStep identifier
↳ ↳ namestringStep name
↳ ↳ typestring/enumStep type (register, online, offline, pre_hire, final)
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. If the action was made automatically, this field will be null.
↳ idintegerUser id
↳ namestringUser name
↳ emailstringUser e-mail
{
  "companyName": "ACME",
  "id": "24e99765-8583-4be5-87ae-489c86642974",
  "event": "application.moved",
  "date": "2019-06-19T23:48:46.952Z",
  "data": {
    "job": {
      "id": 19139,
      "name": "Developer",
      "type": "vacancy_type_effective",
      "departmentCode": "2499",
      "roleCode": "73",
      "branchCode": "57",
      "customFields": [
        {
          "id": "0ba5013e-1496-4853-8390-39de1b08f3td",
          "title": "This is a custom field",
          "value": "The value of custom field"
        }
      ],   
      "department": {
        "id": 45,
        "code": "2499",
        "name": "App Development",
        "similarity": "technology"
      },
      "role": {
        "id": 56,
        "code": "73",
        "name": "Developer",
        "similarity": "developer"
      }, 
      "branch": {
        "id": 1895,
        "code": "57",
        "name": "GUPY > BRANCH 1"
      }
    },
    "application": {
      "id": 2937132,
      "score": 71.570454783086,
      "partnerName": "linkedin",
      "status": "in_process",
      "preHiringInformation": {},
      "tags": ["tag 1", "tag 2"],
      "currentStep": {
        "id": 86546,
        "name": "Cadastro",
        "type": "register"
      },
      "previousStep": {
        "id": 86549,
        "name": "Interview"
        "type": "offline"
      }
    },
    "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": 48000,
      "name": "User",
      "email": "[email protected]"
    }
  }
}