Admission Automatic Routing Process Created event

This event is triggered when the pre-employee search for transportation route options while filling out the automatic routing transportation benefit.

Notification properties

The notification will be sent with the following properties:

PropertyTypeDescription
routingIdstringIdentifier of the new routing, provided by Gupy in uuid format.
companyIdnumberCompany ID.
preEmployeeNamestringPre employee name.
identificationstringPre employee CPF document (only numbers).

e.g., 12345678910.
companyAddressstringFull address of the company/branch.

e.g., Avenida Paulista, 1079, Bela Vista, 01311200, São Paulo - SP, Brasil.

Must overwrite the company's registered address in the partner system.
companyAddressZipCodestring | nullZip code of the company/branch, which will be the destination of the routing.

e.g., 12345678.

Must overwrite the company's registered address in the partner system.
companyAddressStreetstring | nullCompany/branch address street.

Must overwrite the company's registered address in the partner system.
companyAddressNumberstring | nullCompany/branch address number.

Must overwrite the company's registered address in the partner system.
companyAddressNeighborhoodstring | nullCompany/branch address neighborhood.

Must overwrite the company's registered address in the partner system.
companyAddressCitystring | nullCompany/branch address city.

Must overwrite the company's registered address in the partner system.
companyAddressStatestring | nullCompany/branch address status.

e.g., SP.

Must overwrite the company's registered address in the partner system.
preEmployeeAddressZipCodestringZip code of the pre employee

e.g., 12345678.
preEmployeeAddressStreetstringStreet address of the pre employee.
preEmployeeAddressNumberstringAddress number of the pre employee.

e.g., 123 or 2-A.
preEmployeeAddressNeighborhoodstringNeighborhood of the pre employee's address.
preEmployeeAddressCitystringCity of address of the pre employee.
preEmployeeAddressStatestringState of address of the pre employee.

e.g., SP.
startOfWorkdaystringStart of the pre employee's workday.

e.g., 09:00.
endOfWorkdaystringEnd of the pre employee's working day.

e.g., 18:00.
daysOfWorknumberNumber of days worked in the month by the pre employee.

e.g., 22.

Example

{
  "companyName": "ACME",
  "id": "24e99765-8583-4be5-87ae-489c86642964", 
  "event": "admission.automatic-routing-process",  
  "date": "2019-06-19T23:48:46.952Z", 
  "data": {
    "routingId": "e3dd4f68-929b-49b4-8a9d-42c2b952c3e8",
    "companyId": 1,
    "companyAddress": "Avenida Paulista, 1079 - Bela Vista, São Paulo - SP, 01311-200", 
    "companyAddressZipCode": "01311200", 
    "companyAddressStreet": "Avenida Paulista", 
    "companyAddressNumber": "1079", 
    "companyAddressNeighborhood": "Bela Vista", 
    "companyAddressCity": "São Paulo", 
    "companyAddressState": "SP", 
    "preEmployeeName": "John Doe", 
    "identification": "12345678909", 
    "preEmployeeAddressZipCode": "00000000", 
    "preEmployeeAddressStreet": "Avenida Paulista", 
    "preEmployeeAddressNumber": "123", 
    "preEmployeeAddressNeighborhood": "Jardins", 
    "preEmployeeAddressCity": "São Paulo", 
    "preEmployeeAddressState": "SP", 
    "startOfWorkday": "09:00", 
    "endOfWorkday": "18:00", 
    "daysOfWork": "20"
  }
}