Export User List?
Best Answer
-
Hello @AlainMoreau,
Please find the corresponding thread regarding this topic here:
Let me know if this is what you were looking for! 🌻
Community Manager
0
Answers
-
Hello @AlainMoreau,
Please find the corresponding thread regarding this topic here:
Let me know if this is what you were looking for! 🌻
Community Manager
0 -
You answered with a response on how to export "Computers". The question is how to export "Users" please.
0 -
The below powershell script works for exporting Users:
$jsonFile = "C:\TeamViewer\User_export.json"
$csvFile = "C:\TeamViewer\User_export.csv"
$tvAccessToken = read-host "Please type your token "
$usersResponse = Invoke-RestMethod -Uri "https://webapi.teamviewer.com/api/v1/users?full_list=true" -Method Get -Headers @{authorization = "Bearer $tvAccessToken"}
$usersResponse.users | ConvertTo-Json | Out-File $jsonFile
$usersResponse.users | Export-Csv -Path $csvFile -Delimiter ',' -NoTypeInformation
1 -
Thank you so much, @JackKaylor, for sharing this script with us!
I am sure this will help lots of users! 🙌
All the best,
/JeanK
Community Manager
0 -
API has a lot of features, very handy. kind of strange these aren't basic features in the UI... I ended writing a powershell script that leverages the API. Thanks for the discussion and responses, glad people are getting something from it!
0 -
That's very good feedback... thank you @AlainMoreau.
It would be fantastic if you could share the scripts you have written!
(But only if you want to...😊)
Have a great day!
/JeanK
Community Manager
0 -
Hello @JackKaylor and @AlainMoreau,
I am just updating the discussion here as it is now possible to export all users into a CSV file from the Management Console.
- Log in to the Management Console: https://login.teamviewer.com/
- Click on User Management
- Click the manage button (🔧)
- Select Export all to CSV
- Recommended: Select Semicolon as delimitation
- Click on Export
This will download the export in .csv format automatically.
I hope this will help your future exports!
All the best,
/JeanK
Community Manager
0