action posthog_streamlit_apps_retrieve { label: "Retrieve a streamlit app" provider: posthog method: GET path: "/api/projects/{project_id}/streamlit_apps/{short_id}/" encoding: json input: { type: "object" properties: { short_id: { type: "string" } } required: ["short_id"] additionalProperties: false } output: { type: "object" required: ["cpu_cores", "created_at", "description", "id", "memory_gb", "name", "short_id", "status", "updated_at"] properties: { active_version: { description: "Currently active version, or null if none uploaded yet." type: "object" } cpu_cores: { type: "number" format: "double" } created_at: { type: "string" format: "date-time" } created_by: { description: "User who created this app." type: "object" } description: { type: "string" } id: { type: "string" format: "uuid" } memory_gb: { type: "number" format: "double" } name: { type: "string" } sandbox: { description: "Current sandbox state, or null if the app has never started." type: "object" } short_id: { type: "string" } status: { type: "string" } updated_at: { type: "string" format: "date-time" } } } }