provider wizard GET /api/projects/{project_id}/wizard/sessions/latest/
@utdk/posthog /api/projects/{project_id}/wizard/sessions/latest/
wizard_sessions_latest_retrieve
Return the single most-recent wizard session for a workflow (and optional skill), or 204 if none exists. Unlike `list`, this is a point lookup the app shell uses to decide whether to open the live SSE stream — it never returns a collection, and 'no run' is a 204 rather than a 404 so clients don't conflate it with a missing endpoint.
project_id path required
Project ID of the project you're trying to access. To find the ID of the project, make a call to /api/projects/.
string
skill_id query
Filter to a single skill within the workflow (e.g. 'nextjs').
string
workflow_id query required
Filter to a single workflow (e.g. 'posthog-integration').
string

Try it

Authentication
Configure credentials for PostHog API
wizardSessionsLatestRetrieve
GET/api/projects/{project_id}/wizard/sessions/latest/
Return the single most-recent wizard session for a workflow (and optional skill), or 204 if none exists. Unlike `list`, this is a point lookup the app shell uses to decide whether to open the live SSE stream — it never returns a collection, and 'no run' is a 204 rather than a 404 so clients don't conflate it with a missing endpoint.

Parameters

required

Project ID of the project you're trying to access. To find the ID of the project, make a call to /api/projects/.

Filter to a single skill within the workflow (e.g. 'nextjs').

required

Filter to a single workflow (e.g. 'posthog-integration').

Configure credentials above to enable sending.

Code snippet
Updates live as you fill in the form above.

TypeScript

import posthog from '@utdk/posthog';

await posthog.wizardSessionsLatestRetrieve()