Application Assigned event

This notification can be sent when an application is assigned to another job.

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
↳ 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
↳ 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
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
↳ schoolingstringCandidate schooling
↳ schoolingStatusstring/enumCandidate schooling status
↳ disabilitiesbooleanCandidate is a person with disabilities
↳ genderstring/enumCandidate gender (Male, Female, Other, NotInformed)
assignedFromobjectThe job the candidate came for
↳ idintegerJob identifier
↳ namestringJob name
↳ departmentCodestringJob department code
↳ roleCodestringJob role code
↳ branchCodestringJob branch code
↳ typestringJob type
↳ departmentobjectJob department information (id, name, code and similarity)
↳ roleobjectJob role information (id, name, code and similarity)
↳ branchobjectJob branch (id, name and code)
assignedByobjectThe user who assigned the application
↳ idintegerUser identifier
↳ namestringUser name
↳ emailstringUser email
↳ codestringUser code

Example Payload

{  
  "job": {  
    "id": 4,  
    "name": "Casting for Game of Thrones",  
    "departmentCode": "D-123",  
    "roleCode": "R-123",  
    "branchCode": "B-123",  
    "type": "vacancy_type_effective",  
    "department": {  
      "id": 1,  
      "name": "Dep 123",  
      "code": "D-123",  
      "similarity": "human_resources"  
    },  
    "role": {  
      "id": 2,  
      "name": "Role 123",  
      "code": "R-123",  
      "similarity": "manager"  
    },  
    "branch": {  
      "id": 3,  
      "name": "Branch 123",  
      "code": "B-123"  
    }  
  },  
  "application": {  
    "id": 999,  
    "tags": [  
      "Bastard",  
      "King in the North"  
    ],  
    "score": 98,  
    "partnerName": null,  
    "currentStep": {  
      "id": 999,  
      "name": "Cadastro"  
    }  
  },  
  "candidate": {  
    "name": "Jon",  
    "lastName": "Snow",  
    "email": "[email protected]",  
    "identificationDocument": "12345678900",  
    "countryOfOrigin": "Winterfell",  
    "birthdate": "1997-03-15",  
    "addressZipCode": "12300123",  
    "addressStreet": "Rua dos Bobos",  
    "addressNumber": "123",  
    "addressCity": "Winterfell",  
    "addressState": "Rio de Janeiro",  
    "addressStateShortName": "RJ",  
    "addressCountry": "Westeros",  
    "addressCountryShortName": "BR",  
    "mobileNumber": "+5511919191234",  
    "phoneNumber": "+551131239191",  
    "schooling": "graduation",  
    "schoolingStatus": "complete",  
    "id": 999,  
    "gender": "Male",  
    "disabilities": true  
  },  
  "assignedFrom": {  
    "id": 4,  
    "name": "Casting for Game of Thrones",  
    "departmentCode": "D-123",  
    "roleCode": "R-123",  
    "branchCode": "B-123",  
    "type": "vacancy_type_effective",  
    "department": {  
      "id": 1,  
      "name": "Dep 123",  
      "code": "D-123",  
      "similarity": "human_resources"  
    },  
    "role": {  
      "id": 2,  
      "name": "Role 123",  
      "code": "R-123",  
      "similarity": "manager"  
    },  
    "branch": {  
      "id": 3,  
      "name": "Branch 123",  
      "code": "B-123"  
    }  
  },  
  "assignedBy": {  
    "id": 2000,  
    "name": "Gupy User",  
    "email": "[email protected]",  
    "code": "123456789"  
  }  
}