PostHog · Schema

CopyExperimentToProject

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
target_team_id integer The team ID to copy the experiment to.
feature_flag_key string Optional feature flag key to use in the destination team.
name string Optional name for the copied experiment.
View JSON Schema on GitHub

JSON Schema

posthog-copyexperimenttoproject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CopyExperimentToProject",
  "title": "CopyExperimentToProject",
  "type": "object",
  "properties": {
    "target_team_id": {
      "type": "integer",
      "description": "The team ID to copy the experiment to."
    },
    "feature_flag_key": {
      "type": "string",
      "description": "Optional feature flag key to use in the destination team."
    },
    "name": {
      "type": "string",
      "description": "Optional name for the copied experiment."
    }
  },
  "required": [
    "target_team_id"
  ]
}