provider dashboards GET
/api/environments/{environment_id}/dashboards/{id}/stream_tiles/ @utdk/posthog
/api/environments/{environment_id}/dashboards/{id}/stream_tiles/ environments_dashboards_stream_tiles_retrieve
Stream dashboard metadata and tiles via Server-Sent Events. Sends metadata first, then tiles as they are rendered.
- environment_id path required
- Deprecated. Use /api/projects/{project_id}/ instead.
- string
- filters_override query
- Object (or pre-encoded JSON string) to override dashboard filters for this request only (not persisted). Top-level keys replace; nested values are not deep-merged — pass the complete value for any key you override. Accepts the same keys as the dashboard filters schema (e.g., `date_from`, `date_to`, `properties`). Ignored when accessed via a sharing token.
- string
- format query
- enum: json, txt
- id path required
- A unique integer value identifying this dashboard.
- integer
- layoutSize query
- Layout size for tile positioning. 'sm' (default) for standard, 'xs' for mobile. The snake_case alias `layout_size` is also accepted for backward compatibility.
- enum: sm, xs
- variables_override query
- Object (or pre-encoded JSON string) to override dashboard variables for this request only (not persisted). Format: {"<variable_id>": {"code_name": "<code_name>", "variableId": "<variable_id>", "value": <new_value>}}. Each entry must include `code_name` — partial entries are silently dropped. The simplest workflow is to call `dashboard-get` first, copy the matching entry from the response, and mutate `value`. Top-level keys replace; nested values are not deep-merged. Ignored when accessed via a sharing token.
- 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.environmentsDashboardsStreamTilesRetrieve()