Hi, How can I get list of space and sort by date of creation?
like this:
SpaceName CreateDate
space 3 2022/01/10
space 2 2022/01/9
space 1 2022/01/8
Thanks
Hi @me
You could get the list of Space by API
curl --request GET \
--url "https://your-site.atlassian.net/wiki/rest/api/space" \
-H 'Content-Type: application/json' \
--user 'email:token'
https://developer.atlassian.com/cloud/confluence/rest/api-group-space/#api-wiki-rest-api-space-get
Thanks,
Pramodh
Hi @me
Created Date is also available
Just explore around API to extract necessary data from this link
https://developer.atlassian.com/cloud/confluence/rest/api-group-space/#api-wiki-rest-api-space-get
Thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Sorry I see you have tagged the question as server
Here's the link for the server and a sample API Call
curl -u username:password \
-X GET "http://confluence-base-url/rest/api/space?status=current"
https://docs.atlassian.com/ConfluenceServer/rest/7.15.0/#api/space-spaces
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.
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.