Skip to content

Get Dynamic Dashboard

GET
/v1/portal/workspace/graph
curl --request GET \
--url 'https://example.com/v1/portal/workspace/graph?limit=8&tenant_id='
limit
Limit
integer
default: 8 >= 1 <= 24
tenant_id
Tenant Id
string
""
X-FractalOps-Tenant-Id
Any of:
string
x-pomerium-jwt-assertion
Any of:
string

Successful Response

Media typeapplication/json
PortalDynamicDashboardOut
object
overview
required
PortalDynamicDashboardOverviewOut
object
tenant_id
required
Tenant Id
string
subject_key
required
Subject Key
string
group_paths
Group Paths
Array<string>
accessible_solutions
Accessible Solutions
integer
0
project_count
Project Count
integer
0
repo_count
Repo Count
integer
0
workspace_count
Workspace Count
integer
0
runtime_count
Runtime Count
integer
0
dataset_count
Dataset Count
integer
0
proposal_count
Proposal Count
integer
0
readiness_score
Readiness Score
integer
0
sections
Sections
Array<object>
PortalDynamicDashboardSectionOut
object
section_id
required
Section Id
string
title
required
Title
string
summary
Summary
string
""
tone
Tone
string
default: neutral
empty_state
Empty State
string
""
items
Items
Array<object>
PortalGraphItemOut
object
item_key
required
Item Key
string
title
required
Title
string
summary
Summary
string
""
status
Status
string
""
href
Href
string
""
chips
Chips
Array<string>
metric_label
Metric Label
string
""
metric_value
Metric Value
integer
0
actions
Actions
Array<object>
PortalGraphActionOut
object
action_id
required
Action Id
string
label
required
Label
string
url
required
Url
string
kind
Kind
string
default: open
summary
Summary
string
""
status
Status
string
""
entity_kind
Entity Kind
string
""
entity_key
Entity Key
string
""
Example
{
"overview": {
"accessible_solutions": 0,
"project_count": 0,
"repo_count": 0,
"workspace_count": 0,
"runtime_count": 0,
"dataset_count": 0,
"proposal_count": 0,
"readiness_score": 0
},
"sections": [
{
"summary": "",
"tone": "neutral",
"empty_state": "",
"items": [
{
"summary": "",
"status": "",
"href": "",
"metric_label": "",
"metric_value": 0,
"actions": [
{
"kind": "open",
"summary": "",
"status": "",
"entity_kind": "",
"entity_key": ""
}
]
}
]
}
]
}

Validation Error

Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationError
object
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
input
Input
ctx
Context
object
Examplegenerated
{
"detail": [
{
"loc": [
"example"
],
"msg": "example",
"type": "example",
"input": "example",
"ctx": {}
}
]
}