Skip to content

New Registration

This event is triggered whenever a new user is registered on the platform, regardless of the method. It sends information about the newly registered user to the chosen route.

ParameterTypeDescription
namestringName of the event: “Membros - Novo cadastro”
slugstringUnique identifier: members.created
send_atstringDate and time of the event (format: “yyyy-MM-dd HH:mm:ss”)
acaostringDescription of the action performed: “cadastro”

ParameterTypeDescription
idnumberUnique identifier for the user.
namestringThe name of the user.
emailstringThe email address of the user.
date_of_birthstringDate of birth of the user.
institutionarrayList of institutions the user belongs to.
institution[].idnumberInstitution ID.
institution[].schoolsarraySchools associated with the institution.
cpfstringUser’s CPF.
cnpjstringUser’s CNPJ.
nicknamestring | nullUser’s nickname.
uuidstring | nullUniversal unique identifier of the user.
phonestringUser’s phone number.
addressobjectAddress information for the user.
address.cepstringZIP code.
address.ufstringState.
address.cidadestringCity.
address.bairrostringNeighborhood.
address.logradourostringStreet address.
address.numerostringAddress number.
address.complementostringAddress complement.
ParameterTypeDescription
formulario_respostasarrayList of objects containing form responses.

The event is triggered in the following scenarios:

  • When a user completes the registration form in the “Institution” or “Unit” system.
  • When an Administrator, Manager, or Teacher registers a user through the “New Members” section.
  • When a user is registered via API or CSV import.
{
"event": {
"name": "Membros - Novo cadastro",
"slug": "members.created",
"send_at": "2023-03-16 11:38:00",
"acao": "cadastro"
},
"data": {
"user": {
"id": 88111131,
"name": "Student",
"email": "student@gmail.com",
"institution": [
{
"id": 5125342498,
"schools": [
{
"id": 19123424393,
"role_id": 4,
"created_at": "16/03/2023 11:37:36",
"updated_at": "16/03/2023 11:37:36"
}
]
}
],
"cpf": "111.222.333-01",
"cnpj": "67.124.784/0001-30",
"nickname": null,
"uuid": null,
"phone": "(12) 3 1231-3212",
"address": {
"cep": "05608-015",
"uf": "SP",
"cidade": "Osasco",
"bairro": "Cidade Jardim",
"logradouro": "Praça Professor José de Melo Pimenta",
"numero": "140",
"complemento": "house"
}
},
"formulario_respostas": [
{
"favorite_color": "blue"
}
]
}
}

Ensure that the destination URL is correct before you start sending payloads. Verify that the parameters sent are correct and complete. Make sure that the webhook recipients are correct and valid. Log and monitor all webhook calls for auditing and troubleshooting purposes.