Appearance
Create user
Create a new user in your WeWeb Auth user list, so they can sign in to your app.
This is useful for admin panels, invites, and creating test users.
Only available with WeWeb Auth
These Users actions are only available when your project uses WeWeb Auth.
Add the action
- In
Data & API, open your API Endpoint workflow. - Click
+ Add an action. - Open
Users. - Select
Create user.
Configuration
| Setting | What it does |
|---|---|
Email | The user’s email address. |
Password | The user’s password. |
Name | Optional display name for the user. |
Profile Image URL | Optional profile image URL. |
Roles | Optional list of role names to give the user. |
Email Verified | Marks the user’s email as already verified. |
Example: create a user from an admin form
- Build a form in
Interfacewith inputs likeEmailInput,PasswordInput, andRoleSelect. - Call your API Endpoint from an interface workflow (
Workflows→API). - In your API Endpoint workflow, add
Create userand bind:Email→ Your email input valuePassword→ Your password input valueRoles→ The selected roles (optional)
- Finish with
Send responseto return a success message.

