action superset_post_security_login { label: "post_security_login" description: "Authenticate and get a JWT access and refresh token" provider: superset method: POST path: "/security/login" encoding: json input: { type: "object" properties: { password: { type: "string" description: "The password for authentication" } provider: { type: "string" description: "Choose an authentication provider" enum: ["db", "ldap"] } refresh: { type: "boolean" description: "If true a refresh token is provided also" } username: { type: "string" description: "The username for authentication" } } } output: { type: "object" properties: { access_token: { type: "string" } refresh_token: { type: "string" } } } }