Disabling the Invite Users option in Confluence

Still need help?

The Atlassian Community is here for you.

Ask the community

Platform notice: Server and Data Center only. This article only applies to Atlassian products on the Server and Data Center platforms.

Support for Server* products ended on February 15th 2024. If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.

*Except Fisheye and Crucible

Problem

This article proposes a solution to disable the Invite Users option, in the User Management > Users section of Confluence's administration.

Workaround

It is possible to remove this Confluence functionality by disabling the Confluence Easy-User Admin system plugin. By doing so, the Invite Users tab content will be blanked out, not displaying this option unless you enable the Confluence Easy-User Admin plugin.

Confluence 7.3.1 and later

In recent Confluence versions, system apps can no longer be disabled through the UI. For those cases, we would need to run the following curl command to disable the Confluence Easy-User Admin system plugin through an API call:

curl --user "<USER>:<PASSWORD>" --location --request PUT '<baseURL>/rest/plugins/1.0/com.atlassian.confluence.plugins.confluence-easyuser-admin-key' \
--header 'Content-Type: application/vnd.atl.plugins.plugin+json' \
--data-raw '{
    "enabled": false
}'

(info) Please remember to replace the following parameters:

  • <USER>: administrator username;
  • <PASSWORD>: administrator password;
  • <baseURL>: base URL of Confluence, including context path if it has one;

Confluence versions earlier than 7.3.1

In earlier versions of Confluence, we can disable the Confluence Easy-User Admin system plugin by updating it through the UI. To do that, it is necessary to follow the steps below:

  1. Go to General Configuration;
  2. On the left sidebar, click on Manage add-ons;
  3. On the drop-down menu, select the System option;
  4. Look for the Confluence Easy-User Admin plugin and expand it;
  5. Click on the Disable button to disable this plugin.


Last modified on Nov 1, 2023

Was this helpful?

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