What is Role-Based Access Control?
RBAC is an access control model built around three concepts:- Roles — Named groupings that represent a job function or authority level (e.g., admin, member)
- Permissions — Specific actions a role is allowed to perform (e.g., create connectors, manage members, view billing)
- Assignments — Users are placed into a role; they inherit all of that role’s permissions automatically
Benefits of RBAC
- Less per-user configuration — Set permissions once on a role; every user assigned to it inherits them automatically. Role changes (e.g., someone moving teams) are a single update, not a sweep across individual accounts.
- Least-privilege by default — Access is scoped to what each role needs. Sensitive areas like billing, SCIM, and org settings stay out of reach for general members without any extra effort.
- Consistent onboarding — New users get the right access on day one by assigning a role, with no risk of missing a permission or over-granting access.
- Easier compliance — Access is tied to named roles rather than individuals, making it straightforward to show auditors who can do what. See Audit Log for a record of actions taken.
Limitations of RBAC
- No record-level control — Permissions apply to a whole resource type, not individual records. You cannot restrict a member to only their team’s data within the same connector.
- Write bundles creation and editing — Granting
writeon a resource lets users both create their own and edit any publicly shared version of it. These cannot currently be separated. - Two roles may not fit every org — The built-in admin/member split covers most cases, but organizations with many distinct access tiers may find the options limiting.
- Roles need periodic review — Access that was appropriate when someone joined may not be correct six months later. Stale role assignments accumulate without active maintenance.
When to Use RBAC
TextQL’s role system works well for organizations that have a clear split between users who manage the platform (admins) and users who use it to run analyses (members). Most deployments follow this pattern. Where it requires more thought is when different groups of members need meaningfully different levels of access — for example, a team that should be able to publish connectors versus one that should only be able to run chats. In those cases, configure the member role to the most restrictive common baseline and use SCIM group mappings if your IdP can enforce the distinction at provisioning time.How to Configure RBAC in TextQL
TextQL has two system roles. Each user in your organization is assigned exactly one.
Roles are configured from Settings → Roles. Click Manage Permissions on any role to view or edit its permission set.
Creating a Role
- Navigate to Settings → Roles
- Click Create Role and give it a name
- Click Manage Permissions on the new role to configure its permission set
- Toggle the permissions you want this role to have across each resource category
Assigning a Role
- Navigate to Settings → Members
- Find the user and click the role dropdown next to their name
- Select admin or member and confirm
Permission Reference
Each role is composed of granular permissions grouped by resource. Permissions follow a consistent pattern:read (public), read_private (private/org-wide), write (create/edit public), and write_private (create/edit private). Below is a full reference of every configurable permission and what it controls.
API Access Key
API Access Key
Controls access to API keys used to authenticate programmatic requests to TextQL.
Default member permissions:
read onlyBilling
Billing
Controls visibility into your organization’s usage and billing data.
Default member permissions: none — billing is admin-only
Chat
Chat
Controls access to conversation threads with Ana.
Default member permissions:
read, writeConnector
Connector
Controls access to data source connections. See Connectors for setup details.
Default member permissions:
write (public connectors only)Context
Context
Controls access to organization-level context prompts that Ana uses to give business-specific answers. See Ontology.
Default member permissions: none
Dashboard
Dashboard
Controls access to persistent dashboards built from Ana’s outputs. See Dashboards.
Default member permissions:
write (public dashboards)Dataset
Dataset
Controls access to datasets — structured data files that can be uploaded or generated by Ana.
Default member permissions:
write (public datasets only)Feed
Feed
Controls access to the feed — posts, comments, and agent activity visible across the organization.
Default member permissions:
writeChat-level access inheritanceFeed post visibility is also gated by chat permissions. A member with feed read access will only see a post if they also have read access to every chat referenced by that post. Posts that have no chat reference (e.g. plain text posts) are always visible to anyone with feed read access. Admins bypass this check and see all posts.MCP
MCP
Controls access to MCP (Model Context Protocol) server configurations used to extend Ana with external tools and data sources.
Default member permissions:
readMember
Member
Controls visibility and management of users in your organization.
Default member permissions:
readNotifications
Notifications
Controls access to notification preferences and in-app alerts.
Default member permissions:
writeOntology
Ontology
Controls access to the ontology — the structured map of your business data. See What is Ontology.
Default member permissions:
readOrganization
Organization
Controls access to top-level organization settings such as name, appearance, and global configuration.
Default member permissions: none — org settings are admin-only
Packages
Packages
Controls access to installable packages that extend TextQL’s functionality.
Default member permissions:
readPlaybook
Playbook
Controls access to automated analysis workflows. See Playbooks.
Default member permissions:
write (public playbooks only)Role
Role
Controls whether a user can view or modify role configurations themselves.
Default member permissions:
readSCIM
SCIM
Controls access to SCIM provisioning tokens and OAuth clients used for automated user lifecycle management. See SCIM.
Default member permissions: none — SCIM is admin-only
Usage
Usage
Controls visibility into organization-level usage metrics and ACU consumption data.
Default member permissions: none — usage data is admin-only
Model Access
Model Access
Controls which AI models members can use and whether they can override the org default. See Model Management for full model management options.
Default member permissions: model switching disabled; allowed models and default set by admin
Provisioning Roles at Scale with SCIM
If your organization uses an identity provider like Okta or Azure AD, you can provision and deprovision users automatically and map IdP groups to TextQL roles using SCIM. This is the recommended approach for organizations with more than ~20 users, as it keeps roles in sync with your IdP without manual intervention.RBAC Best Practices
Default new users to member When unsure which role to assign, start with member and escalate to admin only when explicitly needed. Admin access should be limited to people who manage the organization’s settings and security configuration. Base roles on job function, not individuals If you find yourself needing highly customized permissions for a single person, it is usually a sign that the permission boundary is better handled at the connector or context level rather than a new role. Review role assignments periodically Run a quarterly review of your member list and their assigned roles. Look for users who have moved teams or changed responsibilities. The Audit Log can help surface accounts that have not been active recently. Pair with SSO and SCIM for lifecycle management Manual role assignment works for small teams, but human error accumulates. Connecting TextQL to your IdP via SSO and SCIM ensures that when someone leaves the company or changes teams, their TextQL access updates automatically. Restrict private resource access carefullyread_private and write_private permissions grant org-wide visibility into resources that individual users have intentionally kept private. Grant these sparingly and only to roles that genuinely need cross-user visibility.