List of users showing when the accounts were created and by whom

Still need help?

The Atlassian Community is here for you.

Ask the community

SQL query to see all user's accounts showing date created and who created it:

 

select author_key, object_id, created from audit_log 
where summary = 'User created' 
AND object_parent_name = 'JIRA Internal Directory'
ORDER BY created;

(info) Empty author means created by mail or during JIRA's installation.

 

Last modified on Mar 30, 2016

Was this helpful?

Yes
No
Provide feedback about this article
Powered by Confluence and Scroll Viewport.