action superset_get_async_event { label: "get_async_event" description: "Reads off of the Redis events stream, using the user's JWT token and optional query params for last event received." provider: superset method: GET path: "/async_event/" encoding: json input: { type: "object" properties: { last_id: { type: "string" } } additionalProperties: false } output: { type: "object" properties: { result: { type: "array" items: { type: "object" properties: { channel_id: { type: "string" } errors: { type: "array" items: { type: "object" } } id: { type: "string" } job_id: { type: "string" } result_url: { type: "string" } status: { type: "string" } user_id: { type: "integer" } } } } } } }