# Article Name 3 Ways to Remove Users from Jira # Article Summary Discover three ways to remove users from Jira, outlining practical approaches to handle account removal or deactivation for teams # Original HTML URL on Toriihq.com https://www.toriihq.com/articles/how-to-remove-user-jira # Details Removing someone from Jira can be tricky. Do you deactivate the user, revoke product access, or delete the account? The choice impacts security, licenses, and audit trails. This guide covers three options and when to use each: deactivation in Atlassian Admin, removing Jira product access and groups, and blocking the identity in your directory (Google, Azure AD, SCIM). We’ll highlight what persists, what breaks, and how each path affects compliance and cost. ## Use Jira's UI Here, you’ll use Jira’s own UI to remove a user’s access. Atlassian’s docs call this deactivating a user in Cloud, or disabling a user in Data Center. You won’t delete their history. ### Before you start: confirm your admin level - You need one of these roles: - Jira Cloud: organization admin or site admin - Jira Data Center: Jira System Administrators global permission - If you only have project admin, ask a site or system admin to do this part. ### Jira Cloud: deactivate the user - Go to admin.atlassian.com, pick your organization and site. - Open Directory, then Users. Search for the person and open their profile. - Select Actions, then Deactivate account. Confirm. - What deactivation does: - Stops sign-in to all Atlassian products in your org - Frees the Jira license seat - Keeps their name on issues, comments, and history for audit trail - If you see “Managed by another organization” and cannot deactivate: - Open Product access on the user’s page - Turn off Jira access for your site - Remove them from any groups that grant Jira, like jira-software-users or jira-servicedesk-users ### Jira Data Center or Server: disable the user - In Jira, select the cog Settings icon, then User management. - Find the user, open their details, and click Disable user or clear the Active checkbox. Confirm. - If the account comes from an external directory like LDAP: - Disable the account in that directory, or make the directory read-only in Jira and remove the user’s group memberships - Result is similar to Cloud. They can’t log in, their history stays, and you free the license. ### Clean up their access and visibility - Groups and project roles: - Remove the user from product-access groups and any custom groups - In each key project, open Project settings then People and remove the user from roles - Components and notifications: - If the user was a component lead or on notification schemes, replace them to avoid mail bounces ### Reassign work and owned content - Issues they still own: - Go to Filters > Advanced issue search - Search for assignee = and limit to open statuses - Use the . menu to start a bulk change, choose Edit, set a new Assignee, and confirm - Filters and dashboards they owned: - Go to Jira settings > System > Shared filters and Shared dashboards - Change the owner to an active user or a service account - Automation rules: - For each affected project, open Project settings > Automation - Update the rule actor to a shared service user so rules keep running ### Double-check license impact and audit - In Cloud, confirm the user now shows as Inactive in Directory > Users, and that Jira product access is off - In Data Center, confirm the user is Inactive in User management - Quick audit: - Run a search for any remaining issues assigned to the user - Spot-check key projects for roles, components, and automation references This follows Atlassian’s documented approach: deactivate or disable the account in the UI, remove product access if deactivation is blocked, then reassign what they owned so work keeps moving. ## Use Torii Instead of working in Jira directly, you can use Torii [https://www.toriihq.com/], a SaaS Management Platform, to remove a user in Jira. SMPs let you centrally manage SaaS apps, subscriptions, and integrations, making it simple to programmatically onboard/offboard users, review subscription details, and more. Rather than performing this step manually in Jira, Torii allows you to automate it so the action runs whenever a defined trigger occurs. Triggers can include a new hire, a departing employee, a contract renewal, and similar events. This can save significant time when the task recurs often. To remove a user in Jira directly from Torii, follow these steps: ### 1. Sign up for Torii Contact Torii [https://www.toriihq.com/], and request your free two-week proof-of-concept. ### 2. Connect your Jira account to Torii After your account is active, connect Jira to Torii (assuming you already have an account). Here are the instructions for the Jira integration [https://support.toriihq.com/hc/en-us/articles/5190745800731]. ### 3. Create a Torii workflow for Jira In Torii, set up an automated workflow to remove the user in Jira. Go to the Workflows tab, define a trigger, then add an action that will remove the user in Jira. From then on, whenever the trigger fires, Jira will be updated automatically. ## Use Jira's API Here, you’ll use the Jira Cloud REST API to remove a user’s access. You’ll find their accountId, remove them from groups that grant product access, and, if needed, remove the user from your Jira site. ### Set up basics for requests Use Basic auth with an Atlassian API token. The examples assume: - BASE is your Jira Cloud base URL, like https://your-domain.atlassian.net - EMAIL is your admin email - APITOKEN is your Atlassian API token Example curl auth format is: ### 1) Get the user’s accountId Use the Jira Cloud REST API v3 user search to find the accountId. If you know the email, search with query. Example curl is: - From the response, copy the "accountId" of the user you want to remove. If you already have the accountId, you can confirm the user exists: Example curl is: ### 2) List the groups the user belongs to Use the user groups endpoint in the Jira Cloud REST API v3. Example curl is: This returns the groups that include the user. Product access for Jira is granted by group membership, so you’ll remove the user from these groups. ### 3) Remove the user from each group Use the group membership endpoint to remove the user. You can target a group by groupId or groupname. - Remove by groupId: Example curl is: - Remove by groupname: Example curl is: Repeat for each group returned in step 2. When the user is out of all product-access groups, they can no longer use Jira. ### 4) Confirm group removal Run the groups call again to make sure the user is no longer in any Jira product-access groups. Example curl is: ### 5) Optional: Remove the user from your Jira site If you want to remove the user from the Jira site itself, use the Jira Cloud REST API v3 delete user endpoint. This requires admin permissions. Content created by the user remains attributed as documented in the API. Example curl is: - Expected result: - HTTP 204 means the request succeeded. If you get a 403 or 400, check permissions and whether this operation is allowed for your site.