action posthog_streamlit_apps_connect_info_retrieve { label: "Get iframe connection info for a running app" provider: posthog method: GET path: "/api/projects/{project_id}/streamlit_apps/{short_id}/connect_info/" encoding: json input: { type: "object" properties: { short_id: { type: "string" } } required: ["short_id"] additionalProperties: false } output: { type: "object" required: ["expires_in", "iframe_url"] properties: { expires_in: { type: "integer" description: "Seconds until the embedded session credential expires." } iframe_url: { type: "string" description: "Authenticated URL to embed the running app in an iframe." } } } }