action superset_get_dashboard_pk_thumbnail_digest { label: "get_dashboard_pk_thumbnail_digest" description: "Compute async or get already computed dashboard thumbnail from cache." provider: superset method: GET path: "/dashboard/{pk}/thumbnail/{digest}/" encoding: json input: { type: "object" properties: { digest: { type: "string" } pk: { type: "integer" } q: { type: "string" } } required: ["digest", "pk"] additionalProperties: false } output: { type: "object" additionalProperties: true } }