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;
- when a candidate is added to a job by the company through the talent pool;
- when a candidate is added to a job by the company through the talent recommendation.
Notification properties
The notification will be sent with the following properties:
| Property | Type | Description |
|---|---|---|
| job | object | Basic job information |
| ↳ id | integer | Job identifier |
| ↳ name | string | Job name |
| ↳ departmentCode | string | Job department code |
| ↳ roleCode | string | Job role code |
| ↳ branchCode | string | Job branch code |
| ↳ customFields | array<object> | Job custom fields (id, title, value) |
| ↳ department | object | Job department information (id, name, code and similarity) |
| ↳ role | object | Job role information (id, name, code and similarity) |
| ↳ branch | object | Job branch (id, name and code) |
| application | object | Application information |
| ↳ id | number | Application identifier |
| ↳ score | double | Score of the candidate given by the Gupy platform |
| ↳ partnerName | string | Partner name, the origin of the candidate |
| ↳ tags | array<string> | Tags applied to the application |
| ↳ currentStep | object | Current step of the application |
| ↳ ↳ id | integer | Step identifier |
| ↳ ↳ name | string | Step name |
| ↳ ↳ type | string/enum | Step type (register, online, offline or pre_hire) |
| candidate | object | Candidate information |
| ↳ name | string | Candidate name |
| ↳ lastName | string | Candidate last name |
| string | Candidate e-mail | |
| ↳ identificationDocument | string | The identification document of the candidate (in Brazil is the CPF number) |
| ↳ countryOfOrigin | string | Country of origin of the candidate (eg. Brasil) |
| ↳ birthdate | string | Birth date of the candidate |
| ↳ addressZipCode | string | Address zip code |
| ↳ addressStreet | string | Address street name |
| ↳ addressNumber | string | Address number/complement |
| ↳ addressCity | string | Address city |
| ↳ addressState | string | Address state full name |
| ↳ addressStateShortName | string | Address state short name (eg. SP) |
| ↳ addressCountry | string | Address country |
| ↳ addressCountryShortName | string | Country short name (eg. BR) |
| ↳ mobileNumber | string | Mobile phone number |
| ↳ phoneNumber | string | Phone number |
| ↳ schooling | string/enum | Candidate schooling |
| ↳ schoolingStatus | string/enum | Candidate schooling status |
| ↳ disabilities | boolean | Candidate is a person with disabilities |
| ↳ gender | string/enum | Candidate 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"
}
}
}