Disabling the Invite Users option in Confluence

Platform Notice: Data Center Only - This article only applies to Atlassian products on the Data Center platform.

Note that this KB was created for the Data Center version of the product. Data Center KBs for non-Data-Center-specific features may also work for Server versions of the product, however they have not been tested. 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

Summary

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

(Auto-migrated image: description temporarily unavailable)

Solution

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.

(Auto-migrated image: description temporarily unavailable)

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:

1 2 3 4 5 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 }'

ℹ️ 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.

Updated on April 14, 2025

Still need help?

The Atlassian Community is here for you.