Only generative (LLM tracing) projects can be restricted. Non-generative projects do not support this feature.
Who Can Restrict a Project?
| Role | Can Restrict? | Scope |
|---|---|---|
| Account Admin | ✅ | Any project in the account |
| Organization Admin | ✅ | Projects in their organization’s spaces |
| Space Admin | ✅ | Projects in their space |
| Space Member | ❌ | — |
| Space Read-only | ❌ | — |
Project Admins (a project-level role) can manage access on an already-restricted project, but a Space Admin or above is required to initially enable restrictions.
Project Roles
Once a project is restricted, you assign users one of three predefined project roles — or a custom role:- Project Viewer — Read-only access. Can view traces, spans, metrics, and evaluations.
- Project Editor — Everything a Viewer can do, plus create and update spans, annotate traces, and manage evaluation tasks.
- Project Admin — Everything an Editor can do, plus delete the project and manage access restrictions.
Restricting a Project
Via the UI
- Navigate to the project you want to restrict.
- Open Project Settings (three-dot menu in the top right).
- In the Access Control section, select Restricted.
- Add users and assign each a project role (Viewer, Editor, Admin, or a custom role).
- Click Save Changes.



Via the REST API
Granting Access to a Restricted Project
After restricting a project, grant access by assigning a project role binding to each user who needs it:- Open the restricted project’s Settings → Access Control section.
- Search for the user you want to add.
- Select a role (Viewer, Editor, Admin, or a custom role).
- Click Add, then Save Changes.
POST /v2/role-bindings. See the RBAC REST API for details.
Modifying Access
- Open the restricted project’s Settings → Access Control section.
- To change a role: use the role dropdown next to the user’s name.
- To remove a user: click the remove button next to their entry.
- To add a new user: search and add them with a role.
- Click Save Changes.
Removing Restrictions
- Open the restricted project’s Settings → Access Control section.
- Select Unrestricted.
- Confirm that all space members will regain access.
Unrestricting a project does not delete existing role bindings. If you re-restrict the project later, the previous role assignments will still be in effect.
How Restrictions Interact with Space Roles
When a project is unrestricted (default)
- Space-level roles apply as normal.
- All space members can access the project based on their space role.
- If a user also has a project-level role binding, the more permissive access applies.
When a project is restricted
- Space-level membership alone does not grant access.
- Only explicit project role bindings grant access.
- Exception: Space admins, organization admins, and account admins always retain full access.
Example Scenarios
| User | Space Role | Project Status | Project Role | Result |
|---|---|---|---|---|
| Alice | Member | Unrestricted | None | Can access (via space role) |
| Bob | Member | Restricted | None | Cannot access |
| Carol | Member | Restricted | Viewer | Can view only (via project role) |
| Dave | Admin | Restricted | None | Full access (admin override) |
| Eve | Read-only | Unrestricted | Editor | Can edit (project role overrides) |
FAQ
Can I restrict a non-generative project?
Can I restrict a non-generative project?
No. Project-level restrictions are currently only supported for generative (LLM tracing) projects.
What happens to existing users when I restrict a project?
What happens to existing users when I restrict a project?
Any space member without an explicit project role binding immediately loses access to the project. They will no longer see it in their project list. Make sure to add all necessary users before or at the time of restricting.
Can a Project Admin add other Project Admins?
Can a Project Admin add other Project Admins?
Yes. A Project Admin on a restricted project can add, remove, and change roles for other users on that project.
Do API keys respect project restrictions?
Do API keys respect project restrictions?
Yes. The same access control enforcement applies to API and programmatic access. If a project is restricted, API calls must be authenticated as a user with an appropriate project role binding (or an admin).
How does this relate to AI provider permissions?
How does this relate to AI provider permissions?
AI provider management is a separate, organization-level capability. Project restrictions control access to project data (traces, spans, annotations). Managing AI provider integrations requires Organization Admin or Account Admin access regardless of project restrictions.