action superset_get_dashboard_id_or_slug_charts { label: "get_dashboard_id_or_slug_charts" description: "Get the chart definitions for a given dashboard" provider: superset method: GET path: "/dashboard/{id_or_slug}/charts" encoding: json input: { type: "object" properties: { id_or_slug: { type: "string" } } required: ["id_or_slug"] additionalProperties: false } output: { type: "object" properties: { result: { type: "array" items: { type: "object" properties: { cache_timeout: { type: "integer" format: "int32" description: "Duration (in seconds) of the caching timeout for this chart. Note this defaults to the datasource/table timeout if undefined." } changed_on: { type: "string" description: "The ISO date that the chart was last changed." } datasource: { type: "string" description: "The datasource name." } description: { type: "string" description: "A description of the chart propose." } description_markeddown: { type: "string" description: "Sanitized HTML version of the chart description." } form_data: { type: "object" description: "Form data from the Explore controls used to form the chart's data query." } modified: { type: "string" } slice_id: { type: "integer" format: "int32" } slice_name: { type: "string" description: "The name of the chart." } slice_url: { type: "string" description: "The URL of the chart." } } } } } } }