Hi Team,
For auditing purpose, I need all spaces in the wiki with created user
example:
Space name created a user name last update space
A Jhon date
B Mark date
C Mike date
You can use REST API to get all spaces
https://developer.atlassian.com/cloud/confluence/rest/#api-space-get
and to get the last updated date you might need to get content history and check the latest update date..
https://developer.atlassian.com/cloud/confluence/rest/#api-content-id-history-get
or
https://developer.atlassian.com/cloud/confluence/rest/#api-space-spaceKey-content-get
and sort this date by date and return the earliest date (that would be your last updated content per space)
Wen you want to find who created that space (usually is the creator of home page) so in get space api you have ability to get that info from "homepage" parameter
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.