import os
from syllable_sdk import SyllableSDK
with SyllableSDK(
api_key_header=os.getenv("SYLLABLESDK_API_KEY_HEADER", ""),
) as ss_client:
res = ss_client.dashboards.post_get_dashboard(dashboard_name="<value>")
# Handle response
print(res){
"embedded_id": "<string>",
"guest_token": "<string>",
"name": "<string>",
"display_name": "<string>",
"superset_url": "<string>",
"rank": 123,
"label": "<string>"
}METHOD: POST URL: /dashboard/fetch_info ARGUMENTS: None RETURNS: Dashboard info for embedding
import os
from syllable_sdk import SyllableSDK
with SyllableSDK(
api_key_header=os.getenv("SYLLABLESDK_API_KEY_HEADER", ""),
) as ss_client:
res = ss_client.dashboards.post_get_dashboard(dashboard_name="<value>")
# Handle response
print(res){
"embedded_id": "<string>",
"guest_token": "<string>",
"name": "<string>",
"display_name": "<string>",
"superset_url": "<string>",
"rank": 123,
"label": "<string>"
}Successful Response
Basic information about a dashboard.
Superset embedded ID of the dashboard
Superset guest token of the dashboard
Name of the dashboard
Display name of the dashboard
Base Superset URL of the dashboard
Dashboard importance (0 is the highest)
Dashboard label. Typically "report" or "dashboard"