Skip to main content
User roles define the permissions and access levels within a workspace. These roles control what actions users can perform and what content they can access.

Available Roles

admin

Full administrative access

  • Manage users and permissions
  • Configure workspace settings
  • Access all workspace content
  • Manage integrations and billing

member

Standard user access

  • Create and edit own content
  • Collaborate on shared projects
  • View workspace content
  • Limited administrative actions

owner

Ultimate ownership permissions

  • All admin rights
  • Delete workspace
  • Transfer ownership
  • Billing and subscription management

guest

Limited read-only access

  • View shared content only
  • Read-only permissions
  • External collaborator access
  • Time-limited access (optional)

Role Comparison Table

RoleDescriptionUser ManagementContent AccessWorkspace SettingsBilling & Deletion
ownerUltimate ownership permissions✅ Full control✅ All content✅ All settings✅ Delete workspace
adminFull administrative access✅ Manage users✅ All content✅ All settings⚠️ Billing only
memberStandard user access❌ No access⚠️ Own + shared❌ Limited❌ No access
guestLimited read-only access❌ No access⚠️ Shared only❌ No access❌ No access

Role Hierarchy

The roles follow a hierarchical structure where higher-level roles inherit permissions from lower levels:
owner > admin > member > guest

Usage in API

When creating or updating memberships, use these exact role values:
{
  "role": "admin"
}
Valid values: admin, member, owner, guest
I