Change Log

Version 7.0.2.0

  • Support for Confluence 7.13
  • No longer requires Copy Space from Atlassian Labs

Version 7.0.1.2

  • Bugfix for archive space endpoint

Version 7.0.1.1

  • REST endpoint to update space status (archived or current)

Version 6.0.1.0

  • Bugfix for group management calls

Version 6.0.0.14

  • Added REST function to add links to the Confluence space sidebar:

    • POST /cwxapiextension/latest/spaces/add-sidebar-link

    Content-Type: application/json
    Content (example):

    {
        "spaceKey": "DEMO",
        "label": "Link Name",
        "url": "http://demosite.com/"
    }

Version 5.8.0.13

  • Performance improvement of group management calls

Version 5.8.0.12

  • Added REST function to add a user to a Confluence group respectively remove a user from a Confluence group:

    • POST /cwxapiextension/latest/groups/add-users

    • POST /cwxapiextension/latest/groups/remove-users

    Content-Type: application/json
    Content (example):

    {
     "group": "confluence-users",
     "users": [ "alice", "bob", "local_admin" ]
     }

Version 5.8.0.11

  • Added function to create groups in Confluence.
    • POST /cwxapiextension/latest/groups/set-users

    Content-Type: application/json
    Content (example):

    {
     "group": "confluence-users",
     "users": [ "alice", "bob", "local_admin" ]
     }