Enabling unlicensed access to Confluence Cloud spaces via API

Platform Notice: Cloud - This article applies to Atlassian products on the cloud platform.

Summary

When Confluence Cloud and Jira Service Management are integrated, there will have an option to open "unlicensed" access for a space, allowing active users (without a Confluence license) to access the instance and view it. From the UI, this permission can only be enabled via the Jira Service Management project connected to a Confluence space.

Even without Jira Service Management integrated or a project linked to a space, an API call can be used in order to have such permissions enabled.

Solution

As a space administrator of Confluence, the following REST API call can be used:

curl --request POST \
  --url 'https://<INSTANCE>.atlassian.net/wiki/rest/knowledge-base/1.0/permissions/space/unlicensedview' \
  -u 'user_email@domain.com:<API-TOKEN>' \
  --header 'Accept: application/json' \
  --header 'Content-Type: application/json' \
  -d $'{
"enablePermission": true,
"spaceKey": "<SPACE-KEY>"
}'

(info) When successful, a message like the following should be displayed:

{"spacePermissions":{"spaceKey":"<SPACE-KEY>","unlicensedViewPermissionEnabled":true,"anonymousViewPermissionEnabled":false},"globalPermissions":{"unlicensedAuthenticatedAccessEnabled":true,"anonymousAccessEnabled":false}}%   

Notes

Last modified on Aug 23, 2022

Was this helpful?

Yes
No
Provide feedback about this article
Powered by Confluence and Scroll Viewport.