URL Deep Links
mindzieStudio supports direct URL navigation to specific entities. All URLs use query parameters and require authentication.
Entity Navigation URLs
These URLs use the /navigate endpoint to open specific entities:
| Entity | URL Pattern |
|---|---|
| Analysis | /navigate?type=analysis&tenantid={tenantId}&analysisid={notebookId} |
| Dashboard | /navigate?type=dashboard&tenantid={tenantId}&dashboardid={dashboardId} |
| Block | /navigate?type=block&tenantid={tenantId}&blockid={blockId}&analysisid={notebookId} |
| Tenant | /navigate?type=tenant&tenantid={tenantId} |
| Enrichment (by enrichment) | /navigate?type=enrichment&tenantid={tenantId}&enrichmentid={enrichmentId} |
| Enrichment (by notebook) | /navigate?type=enrichment&tenantid={tenantId}&enrichmentnotebookid={enrichmentNotebookId} |
Enrichment URL Notes
- By enrichment_id: Navigates to the first notebook in the enrichment
- By enrichment_notebook_id: Navigates directly to a specific enrichment notebook
One enrichment can contain multiple enrichment notebooks. Use enrichmentnotebookid for direct navigation to a specific notebook, or enrichmentid to navigate to the first notebook in the enrichment.
List Page Navigation URLs
These URLs use the /navigate endpoint to open list pages with proper tenant/project context:
| Page | URL Pattern |
|---|---|
| Projects | /navigate?type=projects&tenantid={tenantId} |
| Apps | /navigate?type=apps&tenantid={tenantId} |
| Investigations | /navigate?type=investigations&tenantid={tenantId}&projectid={projectId} |
| Datasets | /navigate?type=datasets&tenantid={tenantId}&projectid={projectId} |
| Actions | /navigate?type=actions&tenantid={tenantId}&projectid={projectId} |
| BPMN Editor | /navigate?type=bpmn&tenantid={tenantId}&projectid={projectId} |
Sample URLs
Entity Navigation Examples
# Analysis
https://www.mindziestudio.com/navigate?type=analysis&tenantid=02568EE1-083B-4A11-97A4-8944F5FCEB6D&analysisid=07651057-0682-4241-8C62-F345A5678DE1
# Dashboard
https://www.mindziestudio.com/navigate?type=dashboard&tenantid=02568EE1-083B-4A11-97A4-8944F5FCEB6D&dashboardid=AE1E87C5-EEE7-471A-801D-8B10CD932873
# Block
https://www.mindziestudio.com/navigate?type=block&tenantid=02568EE1-083B-4A11-97A4-8944F5FCEB6D&blockid=85FF0725-5E12-41FC-89BC-C286C4E86C28&analysisid=07651057-0682-4241-8C62-F345A5678DE1
# Enrichment
https://www.mindziestudio.com/navigate?type=enrichment&tenantid=02568EE1-083B-4A11-97A4-8944F5FCEB6D&enrichmentid=748D875C-7875-42A1-A728-302B1DA1CCB8
# Enrichment Notebook
https://www.mindziestudio.com/navigate?type=enrichment&tenantid=02568EE1-083B-4A11-97A4-8944F5FCEB6D&enrichmentnotebookid=63CAD0FD-A6AA-4BC4-A81C-5323C268FAC1
List Page Navigation Examples
# Projects
https://www.mindziestudio.com/navigate?type=projects&tenantid=02568EE1-083B-4A11-97A4-8944F5FCEB6D
# Apps
https://www.mindziestudio.com/navigate?type=apps&tenantid=02568EE1-083B-4A11-97A4-8944F5FCEB6D
# Investigations
https://www.mindziestudio.com/navigate?type=investigations&tenantid=02568EE1-083B-4A11-97A4-8944F5FCEB6D&projectid=6BD84BD0-E1D8-4FA8-8E44-53805FFBA16C
# Datasets
https://www.mindziestudio.com/navigate?type=datasets&tenantid=02568EE1-083B-4A11-97A4-8944F5FCEB6D&projectid=6BD84BD0-E1D8-4FA8-8E44-53805FFBA16C
# Actions
https://www.mindziestudio.com/navigate?type=actions&tenantid=02568EE1-083B-4A11-97A4-8944F5FCEB6D&projectid=6BD84BD0-E1D8-4FA8-8E44-53805FFBA16C
# BPMN Editor
https://www.mindziestudio.com/navigate?type=bpmn&tenantid=02568EE1-083B-4A11-97A4-8944F5FCEB6D&projectid=6BD84BD0-E1D8-4FA8-8E44-53805FFBA16C
Required Parameters
| URL Type | tenantid | projectid | analysisid | blockid | dashboardid | enrichmentid | enrichmentnotebookid |
|---|---|---|---|---|---|---|---|
| analysis | Required | - | Required | - | - | - | - |
| dashboard | Required | - | - | - | Required | - | - |
| block | Required | - | Required | Required | - | - | - |
| tenant | Required | - | - | - | - | - | - |
| enrichment | Required | - | - | - | - | One of these | One of these |
| projects | Required | - | - | - | - | - | - |
| apps | Required | - | - | - | - | - | - |
| investigations | Required | Required | - | - | - | - | - |
| datasets | Required | Required | - | - | - | - | - |
| actions | Required | Required | - | - | - | - | - |
| bpmn | Required | Required | - | - | - | - | - |
Notes
- Authentication required: Users must be logged in. Unauthenticated users are redirected to login first.
- Permissions apply: Users can only access content they have permission to view.
- ID format: All IDs are GUIDs (e.g.,
02568EE1-083B-4A11-97A4-8944F5FCEB6D). - Case insensitive: Query parameter names are case-insensitive (
tenantIdandtenantidboth work).
Finding Entity IDs
When viewing an entity in mindzieStudio, the ID appears in the browser address bar. You can copy this ID to construct deep link URLs.