Skip to content

User Profile Updated

This webhook sends an event every time a registration is edited. The event will be triggered when a user edits their profile information or when an administrator/manager performs the edit on behalf of the user.

ParameterTypeDescription
namestringName of the event: “Membros - Edição de dados de usuário”
slugstringUnique identifier: members.updated
send_atstringDate and time of the event (format: “yyyy-MM-dd HH:mm:ss”)
acaostringAction associated with the event: atualização

ParameterTypeDescription
idnumberNumerical identifier of the user.
namestringName of the user.
emailstringEmail address of the user.
institutionarrayList of institutions the user belongs to.
institution[].idnumberInstitution identifier.
institution[].schoolsarraySchools associated with the institution.
institution[].schools[].idnumberSchool identifier.
institution[].schools[].role_idnumberUser role ID in the school.
institution[].schools[].created_atstringCreation date (format: “dd/MM/yyyy HH:mm:ss”).
institution[].schools[].updated_atstringLast update date (format: “dd/MM/yyyy HH:mm:ss”).
cpfstringUser’s CPF.
nicknamestring | nullUser’s nickname.
uuidstring | nullUniversal unique identifier of the user.

The event will be triggered when a user edits their profile information or when an administrator/manager performs the edit on behalf of the user.

{
"event": {
"name": "Membros - Edição de dados de usuário",
"slug": "members.updated",
"send_at": "2023-07-03 13:16:22",
"acao": "atualização"
},
"data": {
"user": {
"id": 123456789,
"name": "Student Name",
"email": "student@toolzz.com",
"institution": [
{
"id": 123456,
"schools": [
{
"id": 12345678,
"role_id": 4,
"created_at": "29/06/2023 17:46:31",
"updated_at": "03/07/2023 13:15:38"
}
]
}
],
"cpf": "123.456.789-99",
"nickname": null,
"uuid": null
}
}
}

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.