🤝 Shared Resources

Collaborate with your team by sharing queries, AI agents, templates, and data sources across your organization.

Overview

Shared Resources enable:

📦 Plan Requirement

Shared Resources are available in Growth plan and above.

Shareable Resources

1. Queries

Share saved queries with team members:

// Share a query POST /api/queries/{query_id}/share { "shared_with_user_ids": [123, 456], "permission": "view" // or "edit" }

2. AI Agents

Collaborate on autonomous agents:

3. Templates

Build organizational template libraries:

4. Data Sources

Share database connections:

Sharing Permissions

View Permission

Recipients can:

Edit Permission

Recipients can:

Admin Permission

Recipients can:

Sharing Methods

Share with Specific Users

// Share with individual users { "shared_with_user_ids": [123, 456, 789], "permission": "view" }

Share with Roles

// Share with all analysts { "shared_with_roles": ["analyst"], "permission": "view" }

Organization-Wide

// Share with entire organization { "is_public": true, "permission": "view" }

Shared Resources Dashboard

Navigate to Team → Shared Resources to:

Using Shared Resources

Copy to Your Workspace

Make a personal copy of shared resources:

  1. Find resource in Shared Resources
  2. Click "Copy to My Workspace"
  3. Customize as needed
  4. Your copy is independent

Link to Original

Use shared resource directly:

Collections

Organize shared resources into collections:

// Create collection POST /api/collections { "name": "Sales Analytics Pack", "description": "Common sales queries and templates", "items": [ {"type": "query", "id": 123}, {"type": "template", "id": 456}, {"type": "agent", "id": 789} ], "is_public": false, "shared_with_roles": ["sales"] }

Notifications

Team members receive notifications when:

Best Practices

⚠️ Security Note

Shared data sources should use read-only credentials when possible. Never share admin-level database access.

Common Use Cases

Onboarding New Team Members

Create a collection with:

Department Templates

Share standardized templates:

Cross-Functional Collaboration

Enable collaboration:

Permissions

To share resources: