Is there any way of creating a report to capture which Confluence pages are owned by a specific user? It doesn't look like CQL allows it (https://developer.atlassian.com/server/confluence/cql-field-reference/)
Hey Andrii! Thanks for your reply.
There is an additional field on my Confluence which is Owner
I tried to use the REST API but I get
No field exists with the name: 'owner'
So I assume it cannot be queried in this way..?
Hello @Matteo ,
If you mean AUTHOR, then you can use
cql = creator = user_key
for REST API:
https://site.atlassian.net/wiki/rest/api/content/search?cql=creator='USER_KEY_HERE'
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Andrii,
Is User_Key API token? Can you describe more detail?
Thanks,
Moin
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Moin Sobhan ,
I meant the key of the user as the unique identifier. Please note that currently ACCOUNT_ID is used and user_key is deprecated.
E.g. https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-users/#api-rest-api-3-user-get API is used to get user details by username or accountId.
The account ID of the user, which uniquely identifies the user across all Atlassian products. For example, 5b10ac8d82e05b22cc7d4ef5.
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.