Aprovan Registry
provider 2506 operations 141 docs pages
@utdk/posthog
PostHog API

Generated UTDK provider client for PostHog API. Generated UTDK provider types and OpenAPI-backed client for https://us.posthog.com/api/schema/.

Import sample

import posthog from "@utdk/posthog"

Factory sample

import { createPosthogClient } from "@utdk/posthog"
Provider path
posthog
Source API title
PostHog API
Version
1.0.0
Generated
Jul 12, 2026, 9:26 PM
Homepage
Open site
API spec
View spec
Ingestion Warnings V2
Optional generated docs page for @utdk/posthog.

Ingestion Warnings V2

Operations

posthog.ingestionWarningsV2List

  • HTTP: GET /api/projects/{project_id}/ingestion_warnings_v2/
  • What it does: List ingestion warnings
  • OpenAPI operationId: ingestion_warnings_v2_list
  • Path params: None
  • Query params: category, limit, order_by, q, samples, severity, since, type, until
  • Response codes: 200
  • Transport options: None
  • TypeScript: Client interface

Inputs

  • Client input type: { [key: string]: unknown }
  • Client transport options: None

Outputs

  • Client return type: ({ type: string; category: string; severity: string; count: number; last_seen: string; sparkline: ({ timestamp: string; count: number })[]; samples: ({ timestamp: string; source: string; pipeline_step: string; event_uui...
  • OpenAPI response codes: 200
import posthog from "@utdk/posthog";

type IngestionWarningsV2ListInput = Parameters<typeof posthog.ingestionWarningsV2List> extends [infer T, ...unknown[]] ? T : undefined;
type IngestionWarningsV2ListOutput = Awaited<ReturnType<typeof posthog.ingestionWarningsV2List>>;

const result: IngestionWarningsV2ListOutput = await posthog.ingestionWarningsV2List();

// Result shape (from schema): ({ type: string; category: string; severity: string; count: number; last_seen: string; sparkline: ({ timestamp: string; count: number })[]; samples: ({ timestamp: string; source: string; pipeline_step: string; event_uui...