Post Fetch Info
METHOD: POST URL: /dashboard/fetch_info ARGUMENTS: None RETURNS: Dashboard info for embedding
POST
/api/v1/dashboards/fetch_infoAuthentication
Syllable-API-KeyrequiredSend Syllable-API-Key in the header.
Need a credential? Create or manage an API token in the Syllable Console.
Parameters
Query parameters
dashboard_name
string
query
required
Responses
200Successful Response
application/json
response
DashboardTokenResponse
required
7 fields
embedded_idstringrequiredSuperset embedded ID of the dashboard
guest_tokenstringrequiredSuperset guest token of the dashboard
namestringrequiredName of the dashboard
display_namestringrequiredDisplay name of the dashboard
superset_urlstringrequiredBase Superset URL of the dashboard
rankintegerrequiredDashboard importance (0 is the highest)
labelstringrequiredDashboard label. Typically "report" or "dashboard"
Response example
{
"embedded_id": "string",
"guest_token": "string",
"name": "string",
"display_name": "string",
"superset_url": "string",
"rank": 0,
"label": "string"
}422Validation Error
application/json
response
HTTPValidationError
required
1 field
detailValidationError[]optionalItem schema
itemsValidationErrorrequired3 fields
locstring | integer[]requiredItem schema
itemsstring | integerrequired2 options
Option 1stringrequiredOption 2integerrequiredmsgstringrequiredtypestringrequiredResponse example
{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string"
}
]
}
