Inquiry regarding user details for plugin usage in the enterprise

Issue #54 resolved
Parth Hingu created an issue

Hi,

We are currently using this plugin in our Jira datacenter. To improve our security management and monitoring we would like to gather information about which users are utilizing this plugin across our Jira instance.

Could you please guide us on how to obtain a list of users who are actively using this plugin.

Looking forward to your response.

Comments (4)

  1. Adriian Semotiuk

    Hi Parth Hingu

    Thank you for reaching out. API Tokens for Jira app includes a built-in feature that allows administrators to retrieve information about all users who have previously created tokens, along with some additional details.
    You can access this information through the following secured endpoint (only available to administrators):

    ${baseUrl}/rest/api-tokens/latest/all

    For a complete list of other endpoints, please refer to our documentation.
    Alternatively, you can query this information directly from the database. API Tokens for Jira stores token data in the "AO_5D4005_TOKEN" table.
    This method requires direct access to the database. Below is a simple query you can run in a PostgreSQL database:

    SELECT * FROM "AO_5D4005_TOKEN" ORDER BY "USAGE_COUNT" DESC; 
    

    If you believe a dedicated admin page in Jira for managing user tokens would be helpful, please share your requirements with us, and we will consider implementing this feature.

    Thank you for using API Tokens for Jira!

    Best regards,
    Adriian Semotiuk

  2. Roma Bubyakin

    Hello @Parth Hingu

    We have released the Administration page which is much better than REST API.

    Feel free to update v1.5.0

    Regards,
    Roman

  3. Log in to comment