How to create account for someone else from MultiLine Textbox

Hey community, I am wondering how do I create a list of account from a multi-line text box. I want to read line by line and then create account for someone else.
Here is the screenshort of the input box.

You’re better off creating 3 inputs in a row for that other than using a single multiline input.
You can add a button underneath that adds the input calues into a RG like this.

On page load, delete all temp users created by current user, to avoid old inputs. You can add this action to the API workflow instead.

Use recursive workflows to make sure the newly created users create a passowrd or something for this which can only be done on API workflows (or backend workflows). On button click (create account), it triggers the API workflow.

Each time the user clicks “Add Another Account”, a new Thing “Temp user” is created.

You’d have to set input parameters for the API workflow as 1. The recently created “Temp Users” by current user 2. Index (to track the current stage of the workflow; starting at 1) 3. Total COunt (which is just the total number of entries of the “Temp User”.
The first action would be to take the first item in the “Temp User” list (use the index to get this starting at 1), send them a password reset link or some way for them to access the account and reset password. Now check if the index is same as the Total Count. If No, then increment the index by 1 (Index + 1) and call the API workflow again. If yes, then exit the whole workflow (and trigger an action that notifies the user that the task has ended.

Schedule API Workflow to interate over the created users and send them maybe a magic login link or something. This is a test app so I haven’t activated a paid plan so I cannot access backend workflows to demonstrate this

When the “Add Another Account” button is clicked, it creates a new Temp user

The RG is hidden by default and shows only when there’s at least one “Temp User” created by the current user. You could also totally hide this or not use it at all if its not necessary to display the feedback

1 Like

Hey Panto9, Thank you so much!

This topic was automatically closed after 70 days. New replies are no longer allowed.