Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 21:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

How do we know how many users generated Personal Access Tokens in Confluence datacenter

Anil
Contributor
April 30, 2023

Hi Team,

We are using  Confluence data center version  7.18.2(Personal Access Token Plugin is system plugin). All the users in that version can generate the PAT tokens. 

Now we want to know how many users generated PAT tokens in confluence. Can anyone did this before. 

Best Regards,

Anil Kumar 

 

1 answer

0 votes
Andrii Maliuta
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
May 1, 2023

Hello @Anil ,

As an option, it can be possible to use TokenAuthenticationManager (https://docs.atlassian.com/ConfluenceServer/javadoc/7.18.2/com/atlassian/confluence/rpc/auth/TokenAuthenticationManager.html) to check token access per each user

def users = userManager.getAllUsers();

def usersWithToken = []

users.foreach(user -> {
if (tokenAuthenticationManager.hasUseConfluencePermission(user)) {
usersWithToken.add(user)

})

usersWithToken

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events