Posted on 02-07-2022 09:37 AM
Hi,
I would like to know if it is possible to download a report about the Jamf Users & Groups from the setting( not computer/device users), or if it is possible to create a smart group with only the Jamf users in it.
Posted on 02-07-2022 09:44 AM
Have you looked at JAMF Pro Summary in Settings?
Posted on 02-07-2022 10:07 AM
Thank you for providing that link is was helpful, however I am still facing an issue.
I am now able to report all the Jamf user and groups category, however is it possible to extract specific ones such Jamf Users with group privileges only for example ?
Posted on 02-07-2022 10:29 AM
Are you referring to Jamf Pro users (users that have access to your Jamf Pro instance) or end-users?
Posted on 02-07-2022 10:31 AM
I am referring to the Jamf Pro Users(The ones with access to Jamf Pro instance) such as the ones with Group privileges, Administrator, Enrollment ect...
I would to know if it is possible to extract information such as the users that have the group privileges for example.
Posted on 02-07-2022 10:43 AM
Looking through the settings I'm not able to find anything either. It's probably worth reaching out to support if you haven't already.
Posted on 02-08-2022 11:48 AM
You could use the API for this. The /JSSResource/accounts endpoint will give you a list of all users and their ID number. You would want to loop through them to get more information from the /JSSResource/accounts/userid/[ID Number] to get group membership or whatever other information you wanted and output it to a file.
Posted on 02-08-2022 12:46 PM
Thank you for the resource, that can actually work If I am able to loop through the ids one by one.
Do you have any idea where I could find a similar script to understand how I can loop through the ids to get data on all users without having to manually edit the GET request for each id ?
Posted on 09-15-2022 12:23 AM
Were you ever able to figure this out/get a working report? I've been tasked with something similar and am not sure where to start with the API. Any assistance would be greatly appreciated. Thanks!
Posted on 09-21-2022 02:48 PM
I programmed something similar to this since I couldn't find anything on Jamf Nation to do what I wanted. Essentially, the script cycles through all the Jamf Pro accounts (via the API) looking for a specific permission you define, and it echoes back any accounts that have that permission.
Posted on 09-22-2022 03:03 PM
This was a godsend! Thank you so much! 👏