How can I enroll +200 users and get QR Codes in a dynamic way? I currently enroll users manually by creating the user, and getting the QR Code and send it to the user to scan it.
I need a simpler way as +200 users will take a day or 2.
How can I enroll +200 users and get QR Codes in a dynamic way? I currently enroll users manually by creating the user, and getting the QR Code and send it to the user to scan it.
I need a simpler way as +200 users will take a day or 2.
Hi Sisa
In short, use SSO. This is definitely the recommend and most optimal solution to User Management for any non trivial application. It provides the most control and customization.
That said, if you must use QR codes you can do the following
Here is a link to a fairly easy way to generate QR codes within Google sheets. Using this method you can easily create a printable document with 200+ QR codes on it.
However, if you need to send the QR codes to each individual end user then you will want to do this programmatically using the Backend Users API. In this case I would do the following
You can do this from CloudCode, or just as a script that you execute locally, in both cases you will need to use the Backend Users API, it is not yet possible to interact with Enrollments / Sessions from CloudCode without using this Backend API
I hope this helps