Pre-Employee Admission Concluded event

This event is triggered only when the pre-employee is moved to the “Admission Concluded” stage. This event is commonly used in integrations between Gupy Admissão and file management systems. For more information on how to perform this integration, please refer to our model available here

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. This field is deprecated. Use contracts instead. As of 01 Oct 2024, we will no longer provide this information.
↳ urlstringContract url
↳ signatures[]arraySignatures list
↳ ↳ typestringSignature type (sign or witness or party)
↳ ↳ namestring | nullName of the signer
↳ ↳ emailstringEmail of the signer
↳ ↳ signedAtstringDate of signature (in DD/MM/YYYY format)
contractsarray | nullContracts informations
↳ urlstringContract url
↳ signatures[]arraySignatures list
↳ ↳ typestringSignature type (sign or witness or party)
↳ ↳ 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"
      }
    ]
  },
  "contracts": [
    {
      "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": []
    }
  ]
}