I would like to find pages in Confluence that our termed/inactive users created or contributed to. I can see the users on our user management page but I can't specifically search for them using the contributor or creator search in Confluence.
@Erica Larson , I was looking for a way to find pages where a specific inactive user was mentioned, and found that I can paste this URL into the address bar (insert your site URL and the username of the inactive user). Hope it works for you too!
https://YOURURL/confluence/dosearchsite.action?cql=mention+%3D+%22INACTIVEUSERNAME%22
@Susan Ostreicher - Thank you. This solution worked great. I switched out "mention" with "contributor" or "creator" and I was able to find what I was looking for.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Hoa Nguyenthi , you replaced YOURURL with your url and INACTIVEUSERNAME with the username of the inactive user, correct?
If so - is it possible that there aren't any results because that user is not mentioned in any pages?
Without knowing the details of your case, I'm not sure why it isn't working, but those are the first two things I'd check.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Hoa Nguyenthi It looks like that may be the user's full name, instead of a username. Does it work using the username, maybe something like cuongd1? I can't access an Atlassian Server instance right now to confirm this, but I think that you can view details even for inactive users in user management.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Hoa Nguyenthi,
It looks like you're using Confluence Cloud - the link above works for Confluence Server.
I tried the format below on Confluence Cloud, and it seems to work:
https://YOURTEAM.atlassian.net/wiki/search?cql=mention="ACCOUNTID"
The account ID is a long string that includes a colon and several hyphens. It's visible in the URL when you're viewing a user profile. I'm not sure if it's possible to view profiles for inactive users... in case not, there are instructions in this post for getting the account ID programmatically:
https://community.atlassian.com/t5/Jira-questions/how-to-find-accountid/qaq-p/1111436
You also need to add quotation marks around the account ID when you run the search. Here's a more specific example:
And in case it helps, I referred to the article on advanced searching using cql in Confluence Cloud to try to figure this out. It might have other good information for you if you need to do other advanced searches.
https://developer.atlassian.com/cloud/confluence/advanced-searching-using-cql/
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Susan
The solution mentioned above worked like a charm. However, I am looking for specific pages with a search string created by a certain user. Could you help me with this issue pls.
Thanks Divya
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Dear @Erica Larson,
this is a classic mass data job to be done over the API.
Get all pages with history of one space:
http://example.com/rest/api/content?spaceKey=TST&expand=history
Then you extract from each returned page information the creator (username) of it, and request its status:
http://example.com/rest/api/user?username=username
The result JSON should tell you, if the user is inactive. If you get a HTTP code 404, the user doesn't exist any more. So you know which pages are without creators.
So long
Thomas
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Thomas.
Thanks for your suggestion but I am not sure that is what I am looking for. I may have worded my question wrong. I want my inactive users to be searchable within in Confluence. I don't need to find all pages created by inactive users. I want my users to be able to find specific pages that were created or contributed to by inactive users.
Erica
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
got you. But as soon as a user is inactive, you cannot search for them - they are "out". And the history of a page will not be searched. The search focuses on the present not the past.
So long
Thomas
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I'm not sure what this concept means, that of a search for documentation not concerning itself with the "past" Certainly, documentation is all about retaining history and knowledge developed in the "past." And clearly documentation of inactive users is *more* valuable, since they are no longer there to ask. Weird idea, that only the current moment matters when looking for clues on how things have been done...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Facing the same issue. How come I cannot search for pages created or be contributed by inactive use.
That's a common scenario: someone is leaving, became inactive, and someone else now needs to search pages created by the one who left.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.