Pre-Employee Admission Concluded event

This notification can be sent when a pre-employee in an admission process is moved to 'Admissão Concluída' status.
This step is available to enterprise accounts.

Document URLs expire seven days after generation or up to three minutes after it's first access. If that's not enough, we can change the expiration time setting to 12 hours (contact support
to make this change).

Only the contract URL expires five minutes after the first access and we cannot change this setting.

Notification properties

The notification will be sent with the following properties:

PropertyTypeDescription
fullNamestringPre employee name
cpfstring | nullPre employee CPF document (only numbers)
preEmployeeIdnumberPre employee identifier
contractobject | nullContract information
↳ urlstringContract url
↳ signatures[]arraySignatures list
↳ ↳ typestringSignature type (sign or witness)
↳ ↳ namestring | nullName of the signer
↳ ↳ emailstringEmail of the signer
↳ ↳ signedAtstringDate of signature (in DD/MM/YYYY format)
forms[]arrayDocument forms
↳ namestringDocument name
↳ stepstringWorkflow step name
↳ images[]arrayDocument images
↳↳ namestringImage name
↳↳ urlstringImage URL (presigned format)
↳ pdfUrlstringPDF file composed by all document images (presigned URL format)
↳ data[]arrayDocument fields
↳↳ idstringField id
↳↳ fieldstringField name
↳↳ valuestringField value

Example

{
  "companyId": 1,
  "preEmployeeId": 2,
  "fullName": "Pessoa candidata",
  "cpf": "99999999999",
  "contract": {
    "url": "<url>",
    "signatures": [
      {
        "type": "sign",
        "name": "Pessoa",
        "email": "[email protected]",
        "signedAt": "12/10/2022"
      },
      {
        "type": "witness",
        "name": "Pessoa",
        "email": "[email protected]",
        "signedAt": "13/10/2022"
      }
    ]
  },
  "forms": [
    {
      "name": "Carteira de Habilitação (CNH)",
      "step": "Envio de documentação",
      "images": [
        {
          "name": "Frente da Carteira Nacional de Habilitação",
          "url": "<url>"
        },
        {
          "name": "Verso da Carteira Nacional de Habilitação",
          "url": "<url>"
        }
      ],
      "pdfUrl": "<url>",
      "data": []
    },
    {
      "name": "Carteira de Identidade (RG)",
      "step": "Envio de documentação",
      "images": [
        {
          "name": "Frente do RG (ou outro documento de identificação que contenha o número do RG)",
          "url": "<url>"
        },
        {
          "name": "Verso do RG (ou outro documento de identificação que contenha o número do RG)",
          "url": "<url>"
        }
      ],
      "pdfUrl": "<url>",
      "data": []
    },
    {
      "name": "Comprovante de residência",
      "step": "Envio de documentação",
      "images": [
        {
          "name": "Frente do comprovante de residência (ex: conta de água, luz ou carnê do IPTU)",
          "url": "<url>"
        }
      ],
      "pdfUrl": "<url>",
      "data": [
        {
          "id": "cep",
          "field": "CEP",
          "value": "99999-999"
        },
        {
          "id": "pais",
          "field": "País",
          "value": "Brasil"
        },
        {
          "id": "bairro",
          "field": "Bairro",
          "value": "Centro"
        },
        {
          "id": "cidade",
          "field": "Cidade",
          "value": "São Paulo"
        },
        {
          "id": "estado",
          "field": "Estado",
          "value": "São Paulo"
        }
      ]
    },
    {
      "name": "Cartão Nacional de Saúde (SUS)",
      "step": "Etapa customizada",
      "images": [
        {
          "name": "Frente do Cartão do SUS (ou outro documento que contenha o número do SUS)",
          "url": "<url>"
        },
        {
          "name": "Verso do Cartão do SUS (ou outro documento que contenha o número do SUS)",
          "url": "<url>"
        }
      ],
      "pdfUrl": "<url>",
      "data": []
    }
  ]
}