api.dataTable_created
is emitted on every table creation done through the Datahub UI on app.fastgen.com
api.dataTable_updated
is emitted on every table update done through the Datahub UI on app.fastgen.com
api.dataTable_emptied
is emitted whenever Clear table
is clicked in the table settings menu.
api.dataTable_deleted
is emitted whenever Delete Table
is clicked in the table settings menu.
auth.user_loggedIn
is emitted whenever a user logs in
auth.user_signedUp
is emitted whenever a user logs in
auth.email_verificationRequested
is emitted whenever the email verification is requested. This either happens automatically direct after sign up with email and password of when email verification is requested via the API
The link
property is pointing to your hosted authentication pages so it is only working if you have those enabled. The link contains the verification token and the user only has to click the link for the verification to succeed and the user will then be redirected to the entered callback url that was specified on the hosted authentication settings page.
The token
and link
are valid for one day after which they expire.
You can also customize this part of the process by taking the token
and building your own logic on when and how it will be used for verifying the users email. Just use Email Verification Submission Endpoint and provide the token
and the users email is verified. Or use the User action to modify a user’s email verified property.
auth.email_verified
is emitted whenever the email verification is succesfull.
auth.password_reset
is emitted whenever the password reset was requested by either the hosted authentication page or via the Request Password Reset API endpoint.
The token
and link
are valid for one hour after which they expire.
Here you can again decide like describe with the Email Verification Requested Event that you can either use the provided link
and the pre build and ready-configured hosted authentication pages or do the process yourself with the token
and the Submit Password Reset Token API endpoint.
auth.password_reset
is emitted whenever the password reset was successful. Note, that changing the users password through the User Management UI does not trigger this event.