Update User Status to Active when Verified

We set the status of new users to “Not Verified” until they set a password and login. I can’t find a way to change the status to “Active” once they login.

Hi @henry, my understanding is that you cannot programmatically change the built-in User Status field in Tadabase after a user logs in. That field is controlled by the system and is not intended for operational workflows.

If you need to drive logic based on whether a user has completed onboarding, verification, or first login, create your own custom field (e.g., ‘Onboarding Complete’ or ‘Verified’) and use rules or automations to maintain that field. Use the custom field, not the system Status for permissions, filtering, and workflow triggers.

You can change this with a regular form rule, but those are available on a login component. What you could do is redirect them to a welcome or confirmation page with a form that has no fields, add an html block with welcome text, change the button text to “Continue to…” and then update the status with a form rule.

On your login page, have it only redirect if user is not active, so it only goes there once.

1 Like