# Article Name 3 Ways to Remove Members from Notion # Article Summary Discover three ways to remove members from Notion to manage workspace access and keep member lists current with built-in tools # Original HTML URL on Toriihq.com https://www.toriihq.com/articles/how-to-remove-member-notion # Details Keep your Notion workspace clean. When projects end or roles change, you need to remove members or guests to protect data and control billing. Notion gives you built-in controls to do this at the workspace, teamspace, and page levels. We’ll cover three practical ways to remove people, when to use each, and what changes for permissions and access. Then you can keep member lists current without breaking shared workflows. ## Use Notion's UI Here, you’ll use Notion’s UI to remove someone from your workspace, a teamspace, or a single shared page. These steps mirror Notion’s Help Center guidance for Manage members, Manage teamspaces, and Share pages. ### Check your permissions You need the right role to remove people. - For workspace members, be an admin or owner. - For teamspace members, be a teamspace owner or manager. - For page guests, be the page owner or have full access. You can remove different types of access: - Workspace member: remove them from the entire workspace - Teamspace member: remove them from one teamspace only - Page guest: remove their access to a single page ### Remove a member from the workspace This removes their access to everything in the workspace. - In Notion on desktop or web, open Settings & members from the left sidebar. - Open the Members tab. - Find the person. Click the menu next to their name. - Choose Remove from workspace. Confirm. - If prompted, transfer any pages they own to another member so nothing gets stuck without an owner. - On paid plans, this frees up a seat. This follows Notion’s Help Center steps for Manage members. ### Remove someone from a teamspace only Use this if they should stay in the workspace but lose access to one teamspace. - Open the teamspace in the left sidebar. - Click the three dots next to the teamspace name. Choose Manage members. - Find the person. Open the menu next to their name. - Select Remove from teamspace. Confirm. This mirrors Notion’s Help Center guidance for Manage teamspaces. ### Remove a guest from a single page Use this when someone was invited to a page by email and should no longer see it. - Open the page. - Click Share at the top right. - In People with access, find the guest. - Click the X or the arrow next to their name. Choose Remove access. Confirm. These steps match Notion’s Help Center instructions in Share pages. ### Remove yourself from a workspace If you’re leaving, you can do it on your own. - Open Settings & members. - Go to My settings. - Scroll and choose Leave workspace. Confirm. Notion documents this in Leave a workspace. ### If removal didn’t stick - Check if the person is in a user group that still has access. Remove them from the group or remove the group’s access. - For teamspaces, confirm you removed them from the right teamspace. They may still be in others. - If you don’t see Remove, you likely don’t have the needed role. Ask a workspace admin or teamspace owner. ## Use Torii Instead of performing this in Notion itself, consider using Torii [https://www.toriihq.com/], a SaaS Management Platform, to remove member in Notion. SMPs centralize management of your SaaS subscriptions and integrations, making it simple to programmatically onboard/offboard users, review subscription details, and more-all from one place. With Torii, you can automate what would otherwise be a manual step in Notion. Set it once and let it run whenever a trigger occurs-like a new hire, an employee departure, or a contract renewal. If you repeat this task often, automation can save time and reduce errors. To remove member in Notion straight from Torii, follow these steps: ### 1. Sign up for Torii Visit Contact Torii [https://www.toriihq.com/], and request your free two-week proof-of-concept. ### 2. Connect your Notion account to Torii After your account is active, connect Notion to Torii (assuming you already have an account). Here are the instructions for the Notion integration [https://support.toriihq.com/hc/en-us/articles/5167242510747-api]. ### 3. Create a Torii workflow for Notion In Torii, build an automated workflow to remove member in Notion. Go to the Workflows tab, define a trigger, and then add the action that will remove member in Notion. From then on, whenever the trigger conditions are met, Torii will update Notion automatically. ## Use Notion's API Here, you’ll use Notion’s SCIM API to remove a user from your workspace. This applies to Enterprise workspaces with SCIM enabled. ### Get ready: base URL and headers You’ll call Notion’s SCIM 2.0 endpoints. All requests need a SCIM bearer token. - Base URL: - https://api.notion.com/scim/v2 - Required headers: - Authorization: Bearer - Accept: application/scim+json - For PATCH: Content-Type: application/scim+json You can export a couple of variables to keep things tidy: ### Find the user’s SCIM id You’ll need the user’s SCIM id to remove them. Filter by email using the SCIM userName attribute. Example curl is: - What to look for: - The response includes Resources with user objects. Copy the id field for the user you want to remove. Tip: If you use jq, you can pull the id like this: ### Remove the user from the workspace Use DELETE on the user’s SCIM id. A successful delete returns 204 No Content. Example curl is: - Success check: - HTTP 204 means the user was removed. - If you see 404, the user may already be gone or the id is wrong. ### Option: Deactivate instead of delete If you prefer to disable access without deleting the SCIM record, set active to false using PATCH. Example curl is: ### Verify removal Confirm the user is gone or inactive. - Quick checks: - Search again by email and confirm Resources is empty. - Or GET the user by id and confirm you get 404 after delete, or see active: false after a deactivate. Example curl is: