Usage Scenario: Creating a New User with the Registration Form

When an admin user clicks the ‘Add New User’ button in the admin panel, a new user should be created in the system with the entered information, and an automatic password email should be sent to the user.

Configuration Steps:

  1. First, add the Form element from the Elements panel.
  2. Then, drag and drop fields such as txtEmail, txtFirstName, and txtLastName onto the form element using the Text Input element to collect user information.
  3. Place a button labelled ‘Create User.’
  1. Add the following action to this button:
  2. + ADD ACTION → OnClick → Authorization → Create User
  3. Link the parameters as follows:
    • User Name txtEmail.value
    • First NametxtFirstName.value
    • Last NametxtLastName.value
    • Don't Send Emailfalse
  4. When the user fills out the form and clicks the button, they are registered in the system and an email with login instructions is sent.