action posthog_streamlit_apps_status_retrieve { label: "Get app sandbox status" provider: posthog method: GET path: "/api/projects/{project_id}/streamlit_apps/{short_id}/status/" encoding: json input: { type: "object" properties: { short_id: { type: "string" } } required: ["short_id"] additionalProperties: false } output: { type: "object" required: ["last_activity_at", "last_error", "restart_count", "started_at", "status"] properties: { last_activity_at: { type: ["string", "null"] format: "date-time" description: "Timestamp of the last recorded viewer activity, null when none." } last_error: { type: "string" description: "Most recent sandbox error message, empty when there is none." } restart_count: { type: "integer" description: "Number of times the app's sandbox has been restarted." } started_at: { type: ["string", "null"] format: "date-time" description: "When the current sandbox started, null when stopped." } status: { type: "string" description: "Sandbox lifecycle status, or 'stopped' when no sandbox exists." } version_number: { type: ["integer", "null"] description: "Version number the running sandbox was booted from." } } } }