Hi @barrett.cervenka ,
Welcome to the Auth0 Community!
I understand that you want to bulk import users with a random password and later users can reset their passwords to log in. Your use case is feasible. We have a few FAQs regarding user bulk import in case they could be helpful.
Question: What is the maximum allowed file size when using the bulk user import endpoint?
Answer:
You may be receiving a payload too large error from the endpoint. The documentation states the following about maximum allowed file size:
The file size limit for a bulk import is 500KB. You will need to start multiple imports if your data exceeds this size.
Supporting Documentation:
Documentation: User Import Docs
Community Topic: Relevant Topic
Problem statement:
Bulk update user profile details such as user_metadata and profile_metadata using the Auth0 Management API and Postman.
Solution:
We can bulk import users details with Upsert mode turned on to update user details.
This article explains the user import schema and the fields that can be bulk imported
Steps:
Bulk export user details in JSON format using this extension: User Import / Export Extension
Make changes to the export file.
Import the users with the extension or…
Thanks!