PostHog · Schema

ConnectionTokenResponse

Response containing a JWT token for direct sandbox connection

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
token string JWT token for authenticating with the sandbox
View JSON Schema on GitHub

JSON Schema

posthog-connectiontokenresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConnectionTokenResponse",
  "title": "ConnectionTokenResponse",
  "type": "object",
  "description": "Response containing a JWT token for direct sandbox connection",
  "properties": {
    "token": {
      "type": "string",
      "description": "JWT token for authenticating with the sandbox"
    }
  },
  "required": [
    "token"
  ]
}