action superset_delete_css_template_pk { label: "delete_css_template_pk" description: "Delete CSS template" provider: superset method: DELETE path: "/css_template/{pk}" encoding: json input: { type: "object" properties: { pk: { type: "integer" } } required: ["pk"] additionalProperties: false } output: { type: "object" properties: { message: { type: "string" } } } }