I recently changed a group – essentially paying subscribers – to enter at TL3 when they sign up, but wondering how I move all the folks already in that group to TL3.
How many users are we talking about ?
Roughly 1,000 users.
you will have to use something like below
1 Like
You can use the API to manually set those users trust level, you’ll just need a big list of their ids and a script to loop through all the curl PUT commands.
script.sh
while read y; do
curl -s -X PUT "https://board.example.com/admin/users/$y/trust_level" \
-H "Content-Type: multipart/form-data;" \
-H "Api-Key: YOUR_API_KEY_HERE" \
-H "Api-Username: monkey" \
-F "level=3"
done <USER_IDS.txt
USER_IDS.txt
16
17
18
19
29
30
36
59