PostHog · Schema

UserGitHubLinkStartRequest

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
team_id integer Optional team/project id (e.g. PostHog Code); web UI uses the session's current team.
connect_from string Optional client hint (e.g. posthog_code) for return routing after OAuth.
View JSON Schema on GitHub

JSON Schema

posthog-usergithublinkstartrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UserGitHubLinkStartRequest",
  "title": "UserGitHubLinkStartRequest",
  "type": "object",
  "properties": {
    "team_id": {
      "type": "integer",
      "nullable": true,
      "description": "Optional team/project id (e.g. PostHog Code); web UI uses the session's current team."
    },
    "connect_from": {
      "type": "string",
      "description": "Optional client hint (e.g. posthog_code) for return routing after OAuth."
    }
  }
}