openapi: 3.0.3 info: title: PostHog actions insight_variables API version: 1.0.0 description: '' tags: - name: insight_variables paths: /api/environments/{environment_id}/insight_variables/: get: operationId: environments_insight_variables_list parameters: - $ref: '#/components/parameters/EnvironmentIdPath' - name: page required: false in: query description: A page number within the paginated result set. schema: type: integer tags: - insight_variables security: - PersonalAPIKeyAuth: - insight_variable:read responses: '200': content: application/json: schema: $ref: '#/components/schemas/PaginatedInsightVariableList' description: '' deprecated: true x-explicit-tags: - data_warehouse post: operationId: environments_insight_variables_create parameters: - $ref: '#/components/parameters/EnvironmentIdPath' tags: - insight_variables requestBody: content: application/json: schema: $ref: '#/components/schemas/InsightVariable' application/x-www-form-urlencoded: schema: $ref: '#/components/schemas/InsightVariable' multipart/form-data: schema: $ref: '#/components/schemas/InsightVariable' required: true security: - PersonalAPIKeyAuth: - insight_variable:write responses: '201': content: application/json: schema: $ref: '#/components/schemas/InsightVariable' description: '' deprecated: true x-explicit-tags: - data_warehouse /api/environments/{environment_id}/insight_variables/{id}/: get: operationId: environments_insight_variables_retrieve parameters: - $ref: '#/components/parameters/EnvironmentIdPath' - in: path name: id schema: type: string format: uuid description: A UUID string identifying this insight variable. required: true tags: - insight_variables security: - PersonalAPIKeyAuth: - insight_variable:read responses: '200': content: application/json: schema: $ref: '#/components/schemas/InsightVariable' description: '' deprecated: true x-explicit-tags: - data_warehouse put: operationId: environments_insight_variables_update parameters: - $ref: '#/components/parameters/EnvironmentIdPath' - in: path name: id schema: type: string format: uuid description: A UUID string identifying this insight variable. required: true tags: - insight_variables requestBody: content: application/json: schema: $ref: '#/components/schemas/InsightVariable' application/x-www-form-urlencoded: schema: $ref: '#/components/schemas/InsightVariable' multipart/form-data: schema: $ref: '#/components/schemas/InsightVariable' required: true security: - PersonalAPIKeyAuth: - insight_variable:write responses: '200': content: application/json: schema: $ref: '#/components/schemas/InsightVariable' description: '' deprecated: true x-explicit-tags: - data_warehouse patch: operationId: environments_insight_variables_partial_update parameters: - $ref: '#/components/parameters/EnvironmentIdPath' - in: path name: id schema: type: string format: uuid description: A UUID string identifying this insight variable. required: true tags: - insight_variables requestBody: content: application/json: schema: $ref: '#/components/schemas/PatchedInsightVariable' application/x-www-form-urlencoded: schema: $ref: '#/components/schemas/PatchedInsightVariable' multipart/form-data: schema: $ref: '#/components/schemas/PatchedInsightVariable' security: - PersonalAPIKeyAuth: - insight_variable:write responses: '200': content: application/json: schema: $ref: '#/components/schemas/InsightVariable' description: '' deprecated: true x-explicit-tags: - data_warehouse delete: operationId: environments_insight_variables_destroy parameters: - $ref: '#/components/parameters/EnvironmentIdPath' - in: path name: id schema: type: string format: uuid description: A UUID string identifying this insight variable. required: true tags: - insight_variables security: - PersonalAPIKeyAuth: - insight_variable:write responses: '204': description: No response body deprecated: true x-explicit-tags: - data_warehouse /api/projects/{project_id}/insight_variables/: get: operationId: insight_variables_list parameters: - name: page required: false in: query description: A page number within the paginated result set. schema: type: integer - $ref: '#/components/parameters/ProjectIdPath' tags: - insight_variables security: - PersonalAPIKeyAuth: - insight_variable:read responses: '200': content: application/json: schema: $ref: '#/components/schemas/PaginatedInsightVariableList' description: '' x-explicit-tags: - data_warehouse post: operationId: insight_variables_create parameters: - $ref: '#/components/parameters/ProjectIdPath' tags: - insight_variables requestBody: content: application/json: schema: $ref: '#/components/schemas/InsightVariable' application/x-www-form-urlencoded: schema: $ref: '#/components/schemas/InsightVariable' multipart/form-data: schema: $ref: '#/components/schemas/InsightVariable' required: true security: - PersonalAPIKeyAuth: - insight_variable:write responses: '201': content: application/json: schema: $ref: '#/components/schemas/InsightVariable' description: '' x-explicit-tags: - data_warehouse /api/projects/{project_id}/insight_variables/{id}/: get: operationId: insight_variables_retrieve parameters: - in: path name: id schema: type: string format: uuid description: A UUID string identifying this insight variable. required: true - $ref: '#/components/parameters/ProjectIdPath' tags: - insight_variables security: - PersonalAPIKeyAuth: - insight_variable:read responses: '200': content: application/json: schema: $ref: '#/components/schemas/InsightVariable' description: '' x-explicit-tags: - data_warehouse put: operationId: insight_variables_update parameters: - in: path name: id schema: type: string format: uuid description: A UUID string identifying this insight variable. required: true - $ref: '#/components/parameters/ProjectIdPath' tags: - insight_variables requestBody: content: application/json: schema: $ref: '#/components/schemas/InsightVariable' application/x-www-form-urlencoded: schema: $ref: '#/components/schemas/InsightVariable' multipart/form-data: schema: $ref: '#/components/schemas/InsightVariable' required: true security: - PersonalAPIKeyAuth: - insight_variable:write responses: '200': content: application/json: schema: $ref: '#/components/schemas/InsightVariable' description: '' x-explicit-tags: - data_warehouse patch: operationId: insight_variables_partial_update parameters: - in: path name: id schema: type: string format: uuid description: A UUID string identifying this insight variable. required: true - $ref: '#/components/parameters/ProjectIdPath' tags: - insight_variables requestBody: content: application/json: schema: $ref: '#/components/schemas/PatchedInsightVariable' application/x-www-form-urlencoded: schema: $ref: '#/components/schemas/PatchedInsightVariable' multipart/form-data: schema: $ref: '#/components/schemas/PatchedInsightVariable' security: - PersonalAPIKeyAuth: - insight_variable:write responses: '200': content: application/json: schema: $ref: '#/components/schemas/InsightVariable' description: '' x-explicit-tags: - data_warehouse delete: operationId: insight_variables_destroy parameters: - in: path name: id schema: type: string format: uuid description: A UUID string identifying this insight variable. required: true - $ref: '#/components/parameters/ProjectIdPath' tags: - insight_variables security: - PersonalAPIKeyAuth: - insight_variable:write responses: '204': description: No response body x-explicit-tags: - data_warehouse components: schemas: PatchedInsightVariable: type: object properties: id: type: string format: uuid readOnly: true description: UUID of the SQL variable. name: type: string description: Human-readable name for the SQL variable. maxLength: 400 type: allOf: - $ref: '#/components/schemas/InsightVariableTypeEnum' description: 'Variable type. Controls how the value is rendered and substituted in HogQL. * `String` - String * `Number` - Number * `Boolean` - Boolean * `List` - List * `Date` - Date' default_value: nullable: true description: Default value used when a query references this variable. created_by: type: integer readOnly: true nullable: true description: ID of the user who created the SQL variable. created_at: type: string format: date-time readOnly: true description: Timestamp when the SQL variable was created. code_name: type: string readOnly: true nullable: true description: Generated code-safe name used in HogQL as {variables.code_name}. Derived from name. values: nullable: true description: Allowed values for List variables. Null for other variable types. InsightVariable: type: object properties: id: type: string format: uuid readOnly: true description: UUID of the SQL variable. name: type: string description: Human-readable name for the SQL variable. maxLength: 400 type: allOf: - $ref: '#/components/schemas/InsightVariableTypeEnum' description: 'Variable type. Controls how the value is rendered and substituted in HogQL. * `String` - String * `Number` - Number * `Boolean` - Boolean * `List` - List * `Date` - Date' default_value: nullable: true description: Default value used when a query references this variable. created_by: type: integer readOnly: true nullable: true description: ID of the user who created the SQL variable. created_at: type: string format: date-time readOnly: true description: Timestamp when the SQL variable was created. code_name: type: string readOnly: true nullable: true description: Generated code-safe name used in HogQL as {variables.code_name}. Derived from name. values: nullable: true description: Allowed values for List variables. Null for other variable types. required: - code_name - created_at - created_by - id - name - type PaginatedInsightVariableList: type: object required: - count - results properties: count: type: integer example: 123 next: type: string nullable: true format: uri example: http://api.example.org/accounts/?page=4 previous: type: string nullable: true format: uri example: http://api.example.org/accounts/?page=2 results: type: array items: $ref: '#/components/schemas/InsightVariable' InsightVariableTypeEnum: enum: - String - Number - Boolean - List - Date type: string description: '* `String` - String * `Number` - Number * `Boolean` - Boolean * `List` - List * `Date` - Date' parameters: ProjectIdPath: in: path name: project_id required: true schema: type: string description: Project ID of the project you're trying to access. To find the ID of the project, make a call to /api/projects/. EnvironmentIdPath: in: path name: environment_id required: true schema: type: string description: Deprecated. Use /api/projects/{project_id}/ instead. securitySchemes: PersonalAPIKeyAuth: type: http scheme: bearer x-tagGroups: - name: All endpoints tags: - LLM Analytics - actions - activity_log - activity_logs - advanced_activity_logs - alerts - annotations - approval_policies - batch_exports - cdp - change_requests - code - code-invites - cohorts - comments - conversations - core - customer_analytics - customer_journeys - customer_profile_configs - dashboard_templates - dashboards - data_color_themes - data_modeling_jobs - data_warehouse - dataset_items - datasets - desktop_recordings - domains - early_access_feature - early_access_features - elements - endpoints - environments - error_tracking - evaluation_runs - evaluations - event_definitions - event_filter - event_schemas - events - experiment_holdouts - experiment_saved_metrics - experiments - exports - external_data_schemas - external_data_sources - feature_flags - file_system - file_system_shortcut - flag_value - groups - groups_types - health_issues - heatmap_screenshots - heatmaps - hog_flows - hog_function_templates - hog_functions - insight_variables - insights - integrations - invites - js-snippet - legal_documents - lineage - live_debugger_breakpoints - llm_analytics - llm_prompts - llm_skills - logs - managed_viewsets - max - max_tools - mcp_server_installations - mcp_servers - mcp_store - mcp_tools - members - notebooks - oauth_applications - object_media_previews - organizations - persisted_folder - persons - platform_features - plugin_configs - product_analytics - product_tours - project_secret_api_keys - projects - property_definitions - proxy_records - public_hog_function_templates - query - replay - reverse_proxy - role_external_references - roles - sandbox-environments - sandbox_environments - saved - schema_property_groups - sdk_doctor - session_group_summaries - session_recording_playlists - session_recordings - session_summaries - sessions - signals - subscriptions - surveys - taggers - task-automations - task-runs - task_automations - tasks - uploaded_media - user_home_settings - user_interviews - users - visual_review - warehouse_dag - warehouse_model_paths - warehouse_saved_queries - warehouse_saved_query_folders - warehouse_tables - warehouse_view_link - warehouse_view_links - web_analytics - web_experiments - web_vitals - welcome - workflows