action superset_get_dashboard_id_or_slug { label: "get_dashboard_id_or_slug" description: "Get a dashboard detail information." provider: superset method: GET path: "/dashboard/{id_or_slug}" encoding: json input: { type: "object" properties: { id_or_slug: { type: "string" } } required: ["id_or_slug"] additionalProperties: false } output: { type: "object" properties: { result: { type: "object" properties: { changed_by: { type: "object" properties: { first_name: { type: "string" } id: { type: "integer" format: "int32" } last_name: { type: "string" } username: { type: "string" } } } changed_by_name: { type: "string" } changed_by_url: { type: "string" } changed_on: { type: "string" format: "date-time" } changed_on_delta_humanized: { type: "string" } charts: { type: "array" items: { type: "string" description: "The names of the dashboard's charts. Names are used for legacy reasons." } } css: { type: "string" description: "Override CSS for the dashboard." } dashboard_title: { type: "string" description: "A title for the dashboard." } id: { type: "integer" format: "int32" } json_metadata: { type: "string" description: "This JSON object is generated dynamically when clicking the save or overwrite button in the dashboard view. It is exposed here for reference and for power users who may want to alter specific parameters." } owners: { type: "array" items: { type: "object" additionalProperties: true } } position_json: { type: "string" description: "This json object describes the positioning of the widgets in the dashboard. It is dynamically generated when adjusting the widgets size and positions by using drag & drop in the dashboard view" } published: { type: "boolean" } roles: { type: "array" items: { type: "object" properties: { id: { type: "integer" format: "int32" } name: { type: "string" } } } } slug: { type: "string" } table_names: { type: "string" } thumbnail_url: { type: "string" } url: { type: "string" } } } } } }