provider vision GET
/api/environments/{environment_id}/vision/observations/{id}/ @utdk/posthog
/api/environments/{environment_id}/vision/observations/{id}/ environments_vision_observations_retrieve
Retrieve one observation. Any list filters passed along (status, tags, order_by, …) scope the `previous_observation_id`/`next_observation_id` navigation to the matching, identically-ordered set — so prev/next from a filtered table stays within that filtered list.
- environment_id path required
- Deprecated. Use /api/projects/{project_id}/ instead.
- string
- id path required
- A UUID string identifying this replay observation.
- string
- labeled query
- When true, return only observations that have a shared label (thumbs up or down); when false, only unlabeled observations.
- string
- order_by query
- Sort observations. Plain keys: created_at, started_at, completed_at, status, recording_subject_email. JSONB keys: result_score (scorer), result_verdict (monitor), result_confidence, scanner_version. Prefix with `-` for descending; nullable keys sort nulls last either way.
- enum: -completed_at, -created_at, -label, -recording_subject_email…
- recording_subject query
- Filter to observations whose recording subject email contains this value (case-insensitive).
- string
- session_id query
- Filter to observations of one or more session recordings. Accepts a comma-separated list.
- string
- status query
- Filter by observation status. Accepts a comma-separated list.
- string
- tags query
- Filter classifier observations whose fixed or freeform tags include any of the given values (comma-separated). Matches if the tag appears in either `tags` or `tags_freeform`.
- string
- triggered_by query
- Filter by trigger source (schedule, on_demand, or retry). Accepts a comma-separated list.
- string
- verdict query
- Filter monitor observations by verdict. Accepts a comma-separated list (e.g. `yes,inconclusive`).
- string
Try it
Authentication
Configure credentials for PostHog API
Code snippet
Updates live as you fill in the form above.
TypeScript
import posthog from '@utdk/posthog';
await posthog.environmentsVisionObservationsRetrieve()