Bulk User Create / Upsert with Email Confirmed Option #33272
Unanswered
DoubleOTheven
asked this question in
Feature Requests
Replies: 1 comment
|
Any updates? |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
We have B2B clients with millions of user emails that have already been confirmed. We need to periodically sync large bulks of their users with our Supabase account to provide user authentication. We have faced several issues with the current feature set of the client library:
email_confirmedset totrueWe currently call Supabase in a loop with
const result = await supabase.auth.admin.createUser({ ...user, email_confirm: true });All reactions