action posthog_tasks_active_wizard_run_retrieve { label: "Get the team's active onboarding wizard cloud run" description: "Returns the most recent onboarding wizard cloud run for the current project when it is still running (or completed within the last day), so the setup-progress FAB can rehydrate after a drop-flow signup that started the run server-side. Returns 204 when there is none." provider: posthog method: GET path: "/api/projects/{project_id}/tasks/active_wizard_run/" encoding: json output: { type: "object" description: "The team's active onboarding wizard cloud run, used to rehydrate\nthe setup-progress FAB when the run was started server-side (drop flow)." required: ["run_id", "status", "task_id"] properties: { run_id: { type: "string" format: "uuid" description: "Id of the task's latest run, for reconnecting to its progress stream." } started_at: { type: ["string", "null"] format: "date-time" description: "When the run was created, for the FAB's elapsed timer." } status: { type: "string" description: "Latest run status (e.g. queued, in_progress, completed, failed)." } task_id: { type: "string" format: "uuid" description: "Id of the onboarding wizard task." } } } }