How do I batch upload users from the API?
...
Upload token.
Code Block export CSRF=$(curl -sIL -X GET http://localhost:8080/frevvo/web/no-op -c cookies | grep "_csrf" | cut -d" " -f2 | tr -d '\n\r')
Log in.
Code Block curl -k http://localhost:8080/frevvo/web/admin/login?_formTz=<YourTimeZone> -d username=admin@tenant -d password=admin_password -d lAction=Login -d _csrf=$CSRF -X POST -b cookies -H Content-Type:application/x-www-form-urlencoded
Please replace <YourTimeZone> with a Modern Time Zone String (See this list of tz database time zones). See _formTz parameter documentation for more details.
Replace host, port, username and password above as correct for your implementation. For online, host=app.frevvo.com and the port is optional. Change http to https.
Info If your tenant is on the frevvo cloud server, and you see the error "Couldn't open file "users.csv", perform one of the following actions:
- Update the trusted certificate authorities present on your client machine
- Disable the certificate check with the cURL -k option:
Code Block curl http://host:port/frevvo/web/login -d username=admin@tenant -d password=admin_password -d lAction=Login -d _csrf=$CSRF -X POST -b cookies -H Content-Type:application/x-www-form-urlencoded -k
Upload the users csv file:
Code Block curl http://localhost:8080/frevvo/web/tn/tenantid/allUsers?_csrf=$CSRF -F notificationEmailAddress=some_email_address -F usersFile=@users-t1-100.csv -X POST -b cookies -H Content-Type:multipart/form-data
- Replace host, port, tenant.id, some_email_address and users_file.csv above as correct for your implementation. If users_file.csv is not in the current directory, adjust the path accordingly. For frevvoonline, host=app.frevvo.com and port is optional. Change http to https.
- Check the some_email_address for incoming email with the results of the load.
(Optional) Get the user csv back from frevvo. It will have all users, including all that were loaded:
Code Block curl http://host:port/frevvo/web/tn/tenant.id/allUsers -X GET -b cookies
For frevvoonline, host=app.frevvo.com and port is optional. Change http to https and add the -k option
Code Block curl http://host:port/frevvo/web/tn/tenant.id/allUsers -X GET -b cookies -k
- The response will be the users csv data.
...