PostHog · Schema

CopyDashboardTemplate

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
source_template_id string UUID of a team-scoped template in the same organization. Global and feature-flag templates cannot be copied with this endpoint.
View JSON Schema on GitHub

JSON Schema

posthog-copydashboardtemplate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CopyDashboardTemplate",
  "title": "CopyDashboardTemplate",
  "type": "object",
  "properties": {
    "source_template_id": {
      "type": "string",
      "format": "uuid",
      "description": "UUID of a team-scoped template in the same organization. Global and feature-flag templates cannot be copied with this endpoint."
    }
  },
  "required": [
    "source_template_id"
  ]
}