Is it possible to make a signup request without a password, as I can’t find any methods in Wized?
Skipping the password field isn’t possible with Wized’s standard signup methods — across Supabase, Airtable, and Firebase, both email and password are required for the native signup request type.
The good news is Wized has a built-in passwordless option through Magic Link authentication ![]()
The setup depends on which backend you’re on:
If you’re using Supabase, the “Sign in with Magic Link” method has a “Should create user” toggle — enabling that means it’ll automatically create a new account if the email doesn’t exist yet. So it handles passwordless signup and login in one step.
If you’re on Airtable, it’s a two-step flow:
- “Send magic link” — sends the link to the user’s email
- “Login with magic link” — called on the redirect page to complete authentication
If you’re on Firebase, the cleanest passwordless route is “Sign in with OAuth provider” (Google, GitHub, etc.), which handles auth without a password entirely.
One thing worth noting: Magic Link is login-first, so if you need to collect extra profile data during signup (name, phone number, etc.), you’ll want to add a follow-up step after the account is created — like a separate profile-update request once the user lands in your app after clicking the link.
Which backend are you working with?
Happy to walk through the exact steps once we know.
Hi, thank you for the response. I’m working on Supabase and using Twilio for otp base login.
For supabase we have the steps for magic link login outlined on our documentation here: Sign in with Magic Link | Wized Docs
Unfortunately, we do not have one for signing up.
Can we bypass the wized built-in http request make our own, will this work?
You can use the supabase client and make requests using the supabase client. Check out the documentation: JavaScript API | Wized Docs