PostHog environments API

The environments API from PostHog — 15 operation(s) for environments.

OpenAPI Specification

posthog-environments-api-openapi.yml Raw ↑
openapi: 3.0.3
info:
  title: PostHog actions environments API
  version: 1.0.0
  description: ''
tags:
- name: environments
paths:
  /api/projects/{project_id}/environments/:
    get:
      operationId: environments_list
      description: 'Deprecated: use /api/environments/{id}/ instead.'
      parameters:
      - name: limit
        required: false
        in: query
        description: Number of results to return per page.
        schema:
          type: integer
      - name: offset
        required: false
        in: query
        description: The initial index from which to return the results.
        schema:
          type: integer
      - $ref: '#/components/parameters/ProjectIdPath'
      tags:
      - environments
      security:
      - PersonalAPIKeyAuth:
        - project:read
      deprecated: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedTeamBasicList'
          description: ''
      x-explicit-tags: []
    post:
      operationId: environments_create
      description: 'Deprecated: use /api/environments/{id}/ instead.'
      parameters:
      - $ref: '#/components/parameters/ProjectIdPath'
      tags:
      - environments
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Team'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/Team'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/Team'
      security:
      - PersonalAPIKeyAuth:
        - project:write
      deprecated: true
      responses:
        '201':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Team'
          description: ''
      x-explicit-tags: []
  /api/projects/{project_id}/environments/{id}/:
    get:
      operationId: environments_retrieve
      description: 'Deprecated: use /api/environments/{id}/ instead.'
      parameters:
      - in: path
        name: id
        schema:
          type: integer
        description: A unique integer value identifying this environment (aka team).
        required: true
      - $ref: '#/components/parameters/ProjectIdPath'
      tags:
      - environments
      security:
      - PersonalAPIKeyAuth:
        - project:read
      deprecated: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Team'
          description: ''
      x-explicit-tags: []
    put:
      operationId: environments_update
      description: 'Deprecated: use /api/environments/{id}/ instead.'
      parameters:
      - in: path
        name: id
        schema:
          type: integer
        description: A unique integer value identifying this environment (aka team).
        required: true
      - $ref: '#/components/parameters/ProjectIdPath'
      tags:
      - environments
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Team'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/Team'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/Team'
      security:
      - PersonalAPIKeyAuth:
        - project:write
      deprecated: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Team'
          description: ''
      x-explicit-tags: []
    patch:
      operationId: environments_partial_update
      description: 'Deprecated: use /api/environments/{id}/ instead.'
      parameters:
      - in: path
        name: id
        schema:
          type: integer
        description: A unique integer value identifying this environment (aka team).
        required: true
      - $ref: '#/components/parameters/ProjectIdPath'
      tags:
      - environments
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PatchedTeam'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/PatchedTeam'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/PatchedTeam'
      security:
      - PersonalAPIKeyAuth:
        - project:write
      deprecated: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Team'
          description: ''
      x-explicit-tags: []
    delete:
      operationId: environments_destroy
      description: 'Deprecated: use /api/environments/{id}/ instead.'
      parameters:
      - in: path
        name: id
        schema:
          type: integer
        description: A unique integer value identifying this environment (aka team).
        required: true
      - $ref: '#/components/parameters/ProjectIdPath'
      tags:
      - environments
      security:
      - PersonalAPIKeyAuth:
        - project:write
      deprecated: true
      responses:
        '204':
          description: No response body
      x-explicit-tags: []
  /api/projects/{project_id}/environments/{id}/activity/:
    get:
      operationId: environments_activity_retrieve
      description: 'Deprecated: use /api/environments/{id}/ instead.'
      parameters:
      - in: path
        name: id
        schema:
          type: integer
        description: A unique integer value identifying this environment (aka team).
        required: true
      - $ref: '#/components/parameters/ProjectIdPath'
      tags:
      - environments
      responses:
        '200':
          description: No response body
      x-explicit-tags: []
  /api/projects/{project_id}/environments/{id}/add_product_intent/:
    patch:
      operationId: environments_add_product_intent_partial_update
      description: 'Deprecated: use /api/environments/{id}/ instead.'
      parameters:
      - in: path
        name: id
        schema:
          type: integer
        description: A unique integer value identifying this environment (aka team).
        required: true
      - $ref: '#/components/parameters/ProjectIdPath'
      tags:
      - environments
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PatchedTeam'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/PatchedTeam'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/PatchedTeam'
      security:
      - PersonalAPIKeyAuth:
        - project:read
      responses:
        '200':
          description: No response body
      x-explicit-tags: []
  /api/projects/{project_id}/environments/{id}/complete_product_onboarding/:
    patch:
      operationId: environments_complete_product_onboarding_partial_update
      description: 'Deprecated: use /api/environments/{id}/ instead.'
      parameters:
      - in: path
        name: id
        schema:
          type: integer
        description: A unique integer value identifying this environment (aka team).
        required: true
      - $ref: '#/components/parameters/ProjectIdPath'
      tags:
      - environments
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PatchedTeam'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/PatchedTeam'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/PatchedTeam'
      security:
      - PersonalAPIKeyAuth:
        - project:read
      responses:
        '200':
          description: No response body
      x-explicit-tags: []
  /api/projects/{project_id}/environments/{id}/default_evaluation_contexts/:
    get:
      operationId: environments_default_evaluation_contexts_retrieve
      description: Manage default evaluation contexts for a team.
      parameters:
      - in: path
        name: id
        schema:
          type: integer
        description: A unique integer value identifying this environment (aka team).
        required: true
      - $ref: '#/components/parameters/ProjectIdPath'
      tags:
      - environments
      responses:
        '200':
          description: No response body
      x-explicit-tags: []
    post:
      operationId: environments_default_evaluation_contexts_create
      description: Manage default evaluation contexts for a team.
      parameters:
      - in: path
        name: id
        schema:
          type: integer
        description: A unique integer value identifying this environment (aka team).
        required: true
      - $ref: '#/components/parameters/ProjectIdPath'
      tags:
      - environments
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Team'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/Team'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/Team'
      responses:
        '200':
          description: No response body
      x-explicit-tags: []
    delete:
      operationId: environments_default_evaluation_contexts_destroy
      description: Manage default evaluation contexts for a team.
      parameters:
      - in: path
        name: id
        schema:
          type: integer
        description: A unique integer value identifying this environment (aka team).
        required: true
      - $ref: '#/components/parameters/ProjectIdPath'
      tags:
      - environments
      responses:
        '204':
          description: No response body
      x-explicit-tags: []
  /api/projects/{project_id}/environments/{id}/default_release_conditions/:
    get:
      operationId: environments_default_release_conditions_retrieve
      description: Manage default release conditions for new feature flags in this team.
      parameters:
      - in: path
        name: id
        schema:
          type: integer
        description: A unique integer value identifying this environment (aka team).
        required: true
      - $ref: '#/components/parameters/ProjectIdPath'
      tags:
      - environments
      responses:
        '200':
          description: No response body
      x-explicit-tags: []
    put:
      operationId: environments_default_release_conditions_update
      description: Manage default release conditions for new feature flags in this team.
      parameters:
      - in: path
        name: id
        schema:
          type: integer
        description: A unique integer value identifying this environment (aka team).
        required: true
      - $ref: '#/components/parameters/ProjectIdPath'
      tags:
      - environments
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Team'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/Team'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/Team'
      responses:
        '200':
          description: No response body
      x-explicit-tags: []
  /api/projects/{project_id}/environments/{id}/delete_secret_token_backup/:
    patch:
      operationId: environments_delete_secret_token_backup_partial_update
      description: 'Deprecated: use /api/environments/{id}/ instead.'
      parameters:
      - in: path
        name: id
        schema:
          type: integer
        description: A unique integer value identifying this environment (aka team).
        required: true
      - $ref: '#/components/parameters/ProjectIdPath'
      tags:
      - environments
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PatchedTeam'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/PatchedTeam'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/PatchedTeam'
      responses:
        '200':
          description: No response body
      x-explicit-tags: []
  /api/projects/{project_id}/environments/{id}/event_ingestion_restrictions/:
    get:
      operationId: environments_event_ingestion_restrictions_retrieve
      description: 'Deprecated: use /api/environments/{id}/ instead.'
      parameters:
      - in: path
        name: id
        schema:
          type: integer
        description: A unique integer value identifying this environment (aka team).
        required: true
      - $ref: '#/components/parameters/ProjectIdPath'
      tags:
      - environments
      security:
      - PersonalAPIKeyAuth:
        - project:read
      responses:
        '200':
          description: No response body
      x-explicit-tags: []
  /api/projects/{project_id}/environments/{id}/experiments_config/:
    get:
      operationId: environments_experiments_config_retrieve
      description: Manage experiment configuration for this environment.
      parameters:
      - in: path
        name: id
        schema:
          type: integer
        description: A unique integer value identifying this environment (aka team).
        required: true
      - $ref: '#/components/parameters/ProjectIdPath'
      tags:
      - environments
      responses:
        '200':
          description: No response body
      x-explicit-tags: []
    patch:
      operationId: environments_experiments_config_partial_update
      description: Manage experiment configuration for this environment.
      parameters:
      - in: path
        name: id
        schema:
          type: integer
        description: A unique integer value identifying this environment (aka team).
        required: true
      - $ref: '#/components/parameters/ProjectIdPath'
      tags:
      - environments
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PatchedTeam'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/PatchedTeam'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/PatchedTeam'
      responses:
        '200':
          description: No response body
      x-explicit-tags: []
  /api/projects/{project_id}/environments/{id}/generate_conversations_public_token/:
    post:
      operationId: environments_generate_conversations_public_token_create
      description: 'Deprecated: use /api/environments/{id}/ instead.'
      parameters:
      - in: path
        name: id
        schema:
          type: integer
        description: A unique integer value identifying this environment (aka team).
        required: true
      - $ref: '#/components/parameters/ProjectIdPath'
      tags:
      - environments
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Team'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/Team'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/Team'
      responses:
        '200':
          description: No response body
      x-explicit-tags: []
  /api/projects/{project_id}/environments/{id}/is_generating_demo_data/:
    get:
      operationId: environments_is_generating_demo_data_retrieve
      description: 'Deprecated: use /api/environments/{id}/ instead.'
      parameters:
      - in: path
        name: id
        schema:
          type: integer
        description: A unique integer value identifying this environment (aka team).
        required: true
      - $ref: '#/components/parameters/ProjectIdPath'
      tags:
      - environments
      responses:
        '200':
          description: No response body
      x-explicit-tags: []
  /api/projects/{project_id}/environments/{id}/reset_token/:
    patch:
      operationId: environments_reset_token_partial_update
      description: 'Deprecated: use /api/environments/{id}/ instead.'
      parameters:
      - in: path
        name: id
        schema:
          type: integer
        description: A unique integer value identifying this environment (aka team).
        required: true
      - $ref: '#/components/parameters/ProjectIdPath'
      tags:
      - environments
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PatchedTeam'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/PatchedTeam'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/PatchedTeam'
      responses:
        '200':
          description: No response body
      x-explicit-tags: []
  /api/projects/{project_id}/environments/{id}/rotate_secret_token/:
    patch:
      operationId: environments_rotate_secret_token_partial_update
      description: 'Deprecated: use /api/environments/{id}/ instead.'
      parameters:
      - in: path
        name: id
        schema:
          type: integer
        description: A unique integer value identifying this environment (aka team).
        required: true
      - $ref: '#/components/parameters/ProjectIdPath'
      tags:
      - environments
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PatchedTeam'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/PatchedTeam'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/PatchedTeam'
      responses:
        '200':
          description: No response body
      x-explicit-tags: []
  /api/projects/{project_id}/environments/{id}/settings_as_of/:
    get:
      operationId: environments_settings_as_of_retrieve
      description: 'Return the team settings as of the provided timestamp.

        Query params:

        - at: ISO8601 datetime (required)

        - scope: optional, one or multiple keys to filter the returned settings'
      parameters:
      - in: path
        name: id
        schema:
          type: integer
        description: A unique integer value identifying this environment (aka team).
        required: true
      - $ref: '#/components/parameters/ProjectIdPath'
      tags:
      - environments
      responses:
        '200':
          description: No response body
      x-explicit-tags: []
components:
  schemas:
    NullEnum:
      enum:
      - null
    TeamBasic:
      type: object
      description: 'Serializer for `Team` model with minimal attributes to speeed up loading and transfer times.

        Also used for nested serializers.'
      properties:
        id:
          type: integer
          readOnly: true
        uuid:
          type: string
          format: uuid
          readOnly: true
        organization:
          type: string
          format: uuid
          readOnly: true
        project_id:
          type: integer
          maximum: 9223372036854775807
          minimum: -9223372036854775808
          format: int64
          readOnly: true
        api_token:
          type: string
          readOnly: true
        name:
          type: string
          readOnly: true
        completed_snippet_onboarding:
          type: boolean
          readOnly: true
        has_completed_onboarding_for:
          readOnly: true
          nullable: true
        ingested_event:
          type: boolean
          readOnly: true
        is_demo:
          type: boolean
          readOnly: true
        timezone:
          allOf:
          - $ref: '#/components/schemas/TimezoneEnum'
          readOnly: true
        access_control:
          type: boolean
          readOnly: true
      required:
      - access_control
      - api_token
      - completed_snippet_onboarding
      - has_completed_onboarding_for
      - id
      - ingested_event
      - is_demo
      - name
      - organization
      - project_id
      - timezone
      - uuid
    BaseCurrencyEnum:
      enum:
      - AED
      - AFN
      - ALL
      - AMD
      - ANG
      - AOA
      - ARS
      - AUD
      - AWG
      - AZN
      - BAM
      - BBD
      - BDT
      - BGN
      - BHD
      - BIF
      - BMD
      - BND
      - BOB
      - BRL
      - BSD
      - BTC
      - BTN
      - BWP
      - BYN
      - BZD
      - CAD
      - CDF
      - CHF
      - CLP
      - CNY
      - COP
      - CRC
      - CVE
      - CZK
      - DJF
      - DKK
      - DOP
      - DZD
      - EGP
      - ERN
      - ETB
      - EUR
      - FJD
      - GBP
      - GEL
      - GHS
      - GIP
      - GMD
      - GNF
      - GTQ
      - GYD
      - HKD
      - HNL
      - HRK
      - HTG
      - HUF
      - IDR
      - ILS
      - INR
      - IQD
      - IRR
      - ISK
      - JMD
      - JOD
      - JPY
      - KES
      - KGS
      - KHR
      - KMF
      - KRW
      - KWD
      - KYD
      - KZT
      - LAK
      - LBP
      - LKR
      - LRD
      - LTL
      - LVL
      - LSL
      - LYD
      - MAD
      - MDL
      - MGA
      - MKD
      - MMK
      - MNT
      - MOP
      - MRU
      - MTL
      - MUR
      - MVR
      - MWK
      - MXN
      - MYR
      - MZN
      - NAD
      - NGN
      - NIO
      - NOK
      - NPR
      - NZD
      - OMR
      - PAB
      - PEN
      - PGK
      - PHP
      - PKR
      - PLN
      - PYG
      - QAR
      - RON
      - RSD
      - RUB
      - RWF
      - SAR
      - SBD
      - SCR
      - SDG
      - SEK
      - SGD
      - SRD
      - SSP
      - STN
      - SYP
      - SZL
      - THB
      - TJS
      - TMT
      - TND
      - TOP
      - TRY
      - TTD
      - TWD
      - TZS
      - UAH
      - UGX
      - USD
      - UYU
      - UZS
      - VES
      - VND
      - VUV
      - WST
      - XAF
      - XCD
      - XOF
      - XPF
      - YER
      - ZAR
      - ZMW
      type: string
      description: '* `AED` - AED

        * `AFN` - AFN

        * `ALL` - ALL

        * `AMD` - AMD

        * `ANG` - ANG

        * `AOA` - AOA

        * `ARS` - ARS

        * `AUD` - AUD

        * `AWG` - AWG

        * `AZN` - AZN

        * `BAM` - BAM

        * `BBD` - BBD

        * `BDT` - BDT

        * `BGN` - BGN

        * `BHD` - BHD

        * `BIF` - BIF

        * `BMD` - BMD

        * `BND` - BND

        * `BOB` - BOB

        * `BRL` - BRL

        * `BSD` - BSD

        * `BTC` - BTC

        * `BTN` - BTN

        * `BWP` - BWP

        * `BYN` - BYN

        * `BZD` - BZD

        * `CAD` - CAD

        * `CDF` - CDF

        * `CHF` - CHF

        * `CLP` - CLP

        * `CNY` - CNY

        * `COP` - COP

        * `CRC` - CRC

        * `CVE` - CVE

        * `CZK` - CZK

        * `DJF` - DJF

        * `DKK` - DKK

        * `DOP` - DOP

        * `DZD` - DZD

        * `EGP` - EGP

        * `ERN` - ERN

        * `ETB` - ETB

        * `EUR` - EUR

        * `FJD` - FJD

        * `GBP` - GBP

        * `GEL` - GEL

        * `GHS` - GHS

        * `GIP` - GIP

        * `GMD` - GMD

        * `GNF` - GNF

        * `GTQ` - GTQ

        * `GYD` - GYD

        * `HKD` - HKD

        * `HNL` - HNL

        * `HRK` - HRK

        * `HTG` - HTG

        * `HUF` - HUF

        * `IDR` - IDR

        * `ILS` - ILS

        * `INR` - INR

        * `IQD` - IQD

        * `IRR` - IRR

        * `ISK` - ISK

        * `JMD` - JMD

        * `JOD` - JOD

        * `JPY` - JPY

        * `KES` - KES

        * `KGS` - KGS

        * `KHR` - KHR

        * `KMF` - KMF

        * `KRW` - KRW

        * `KWD` - KWD

        * `KYD` - KYD

        * `KZT` - KZT

        * `LAK` - LAK

        * `LBP` - LBP

        * `LKR` - LKR

        * `LRD` - LRD

        * `LTL` - LTL

        * `LVL` - LVL

        * `LSL` - LSL

        * `LYD` - LYD

        * `MAD` - MAD

        * `MDL` - MDL

        * `MGA` - MGA

        * `MKD` - MKD

        * `MMK` - MMK

        * `MNT` - MNT

        * `MOP` - MOP

        * `MRU` - MRU

        * `MTL` - MTL

        * `MUR` - MUR

        * `MVR` - MVR

        * `MWK` - MWK

        * `MXN` - MXN

        * `MYR` - MYR

        * `MZN` - MZN

        * `NAD` - NAD

        * `NGN` - NGN

        * `NIO` - NIO

        * `NOK` - NOK

        * `NPR` - NPR

        * `NZD` - NZD

        * `OMR` - OMR

        * `PAB` - PAB

        * `PEN` - PEN

        * `PGK` - PGK

        * `PHP` - PHP

        * `PKR` - PKR

        * `PLN` - PLN

        * `PYG` - PYG

        * `QAR` - QAR

        * `RON` - RON

        * `RSD` - RSD

        * `RUB` - RUB

        * `RWF` - RWF

        * `SAR` - SAR

        * `SBD` - SBD

        * `SCR` - SCR

        * `SDG` - SDG

        * `SEK` - SEK

        * `SGD` - SGD

        * `SRD` - SRD

        * `SSP` - SSP

        * `STN` - STN

        * `SYP` - SYP

        * `SZL` - SZL

        * `THB` - THB

        * `TJS` - TJS

        * `TMT` - TMT

        * `TND` - TND

        * `TOP` - TOP

        * `TRY` - TRY

        * `TTD` - TTD

        * `TWD` - TWD

        * `TZS` - TZS

        * `UAH` - UAH

        * `UGX` - UGX

        * `USD` - USD

        * `UYU` - UYU

        * `UZS` - UZS

        * `VES` - VES

        * `VND` - VND

        * `VUV` - VUV

        * `WST` - WST

        * `XAF` - XAF

        * `XCD` - XCD

        * `XOF` - XOF

        * `XPF` - XPF

        * `YER` - YER

        * `ZAR` - ZAR

        * `ZMW` - ZMW'
    EffectiveMembershipLevelEnum:
      enum:
      - 1
      - 8
      - 15
      type: integer
    TimezoneEnum:
      enum:
      - Africa/Abidjan
      - Africa/Accra
      - Africa/Addis_Ababa
      - Africa/Algiers
      - Africa/Asmara
      - Africa/Asmera
      - Africa/Bamako
      - Africa/Bangui
      - Africa/Banjul
      - Africa/Bissau
      - Africa/Blantyre
      - Africa/Brazzaville
      - Africa/Bujumbura
      - Africa/Cairo
      - Africa/Casablanca
      - Africa/Ceuta
      - Africa/Conakry
      - Africa/Dakar
      - Africa/Dar_es_Salaam
      - Africa/Djibouti
      - Africa/Douala
      - Africa/El_Aaiun
      - Africa/Freetown
      - Africa/Gaborone
      - Africa/Harare
      - Africa/Johannesburg
      - Africa/Juba
      - Africa/Kampala
      - Africa/Khartoum
      - Africa/Kigali
      - Africa/Kinshasa
      - Africa/Lagos
      - Africa/Libreville
      - Africa/Lome
      - Africa/Luanda
      - Africa/Lubumbashi
      - Africa/Lusaka
      - Africa/Malabo
      - Africa/Maputo
      - Africa/Maseru
      - Africa/Mbabane
      - Africa/Mogadishu
      - Africa/Monrovia
      - Africa/Nairobi
      - Africa/Ndjamena
      - Africa/Niamey
      - Africa/Nouakchott
      - Africa/Ouagadougou
      - Africa/Porto-Novo
      - Africa/Sao_Tome
      - Africa/Timbuktu
      - Africa/Tripoli
      - Africa/Tunis
      - Africa/Windhoek
      - America/Adak
      - America/Anchorage
      - America/Anguilla
      - America/Antigua
      - America/Araguaina
      - America/Argentina/Buenos_Aires
      - America/Argentina/Catamarca
      - America/Argentina/ComodRivadavia
      - America/Argentina/Cordoba
      - America/Argentina/Jujuy
      - America/Argentina/La_Rioja
      - America/Argentina/Mendoza
      - America/Argentina/Rio_Gallegos
      - America/Argentina/Salta
      - America/Argentina/San_Juan
      - America/Argentina/San_Luis
      - America/Argentina/Tucuman
      - America/Argentina/Ushuaia
      - America/Aruba
      - America/Asuncion
      - America/Atikokan
      - America/Atka
      - America/Bahia
      - America/Bahia_Banderas
      - America/Barbados
      - America/Belem
      - America/Belize
      - America/Blanc-Sablon
      - America/Boa_Vista
      - America/Bogota
      - America/Boise
      - America/Buenos_Aires
      - America/Cambridge_Bay
      - America/Campo_Grande
      - America/Cancun
      - America/Caracas
      - America/Catamarca
      - America/Cayenne
      - America/Cayman
      - America/Chicago
      - America/Chihuahua
      - America/Ciudad_Juarez
      - America/Coral_Harbour
      - America/Cordoba
      - America/Costa_Rica
      - America/Creston
      - America/Cuiaba
      - America/Curacao
      - America/Danmarkshavn
      - America/Dawson
      - America/Dawson_Creek
      - America/Denver
      - America/Detroit
      - America/Dominica
      - America/Edmonton
      - America/Eirunepe
      - America/El_Salvador
      - America/Ensenada
      - America/Fort_Nelson
      - America/Fort_Wayne
      - America/Fortaleza
      - America/Glace_Bay
      - America/Godthab
      - America/Goose_Bay
      - America/Grand_Turk
      - America/Grenada
      - America/Guadeloupe
      - America/Guatemala
      - America/Guayaquil
      - America/Guyana
      - America/Halifax
      - America/Havana
      - America/Hermosillo
      - America/Indiana/Indianapolis
      - America/Indiana/Knox
      - America/Indiana/Marengo
      - America/Indiana/Petersburg
      - America/Indiana/Tell_City
      - America/Indiana/Vevay
      - America/Indiana/Vincennes
      - America/Indiana/Winamac
      - America/Indianapolis
      - America/Inuvik
      - America/Iqaluit
      - America/Jamaica
      - America/Jujuy
      - America/Juneau
      - America/Kentucky/Louisville
      - America/Kentucky/Monticello
      - America/Knox_IN
      - America/Kralendijk
      - America/La_Paz
      - America/Lima
      - America/Los_Angeles
      - America/Louisville
      - America/Lower_Princes
      - America/Maceio
      - America/Managua
      - America/Manaus
      - America/Marigot
      - America/Martinique
      - America/Matamoros
      - America/Mazatlan
      - America/Mendoza
      - America/Menominee
      - America/Merida
      - America/Metlakatla
      - America/Mexico_City
      - America/Miquelon
      - America/Moncton
      - America/Monterrey
      - America/Montevideo
      - America/Montreal
      - America/Montserrat
      - America/Nassau
      - America/New_York
      - America/Nipigon
      - America/Nome
      - America/Noronha
      - America/North_Dakota/Beulah
      - America/North_Dakota/Center
      - America/North_Dakota/New_Salem
      - America/Nuuk
      - America/Ojinaga
      - America/Panama
      - America/Pangnirtung
      - America/Paramaribo
      - America/Phoenix
      - America/Port-au-Prince
      - America/Port_of_Spain
      - America/Porto_Acre
      - America/Porto_Velho
      - America/Puerto_Rico
      - America/Punta_Arenas
      - America/Rainy_River
      - America/Rankin_Inlet
      - America/Recife
      - America/Regina
      - America/Resolute
      - America/Rio_Branco
      - America/Rosario
      - America/Santa_Isabel
      - America/Santarem
      - America/Santiago
      - America/Santo_Domingo
      - America/Sao_Paulo
      - America/Scoresbysund
      - America/Shiprock
      - America/Sitka
      - America/St_Barthelemy
      - America/St_Johns
      - America/St_Kitts
      - America/St_Lucia
      - America/St_Thomas
      - America/St_Vincent
      - America/Swift_Current
      - America/Tegucigalpa
      - America/Thule
      - America/Thunder_Bay
      - America/Tijuana
      - America/Toronto
      - America/Tortola
      - America/Vancouver
      - America/Virgin
      - America/Whitehorse
      - America/Winnipeg
      - America/Yakutat
      - America/Yellowknife
      - Antarctica/Casey
      - Antarctica/Davis
      - Antarctica/DumontDUrville
      - Antarctica/Macquarie
      - Antarctica/Mawson
      - Antarctica/McMurdo
      - Antarctica/Palmer
      - Antarctica/Rothera
      - Antarctica/South_Pole
      - Antarctica/Syowa
      - Antarctica/Troll
      - Antarctica/Vostok
      - Arctic/Longyearbyen
      - Asia/Aden
      - Asia/Almaty
      - Asia/Amman
      - Asia/Anadyr
      - Asia/Aqtau
      - Asia/Aqtobe
      - Asia/Ashgabat
      - Asia/Ashkhabad
      - Asia/Atyrau
      - Asia/Baghdad
      - Asia/Bahrain
      - Asia/Baku
      - Asia/Bangkok
      - Asia/Barnaul
      - Asia/Beirut
      - Asia/Bishkek
      - Asia/Brunei
      - Asia/Calcutta
      - Asia/Chita
      - Asia/Choibalsan
      - Asia/Chongqing
      - Asia/Chungking
      - Asia/Colombo
      - Asia/Dacca
      - Asia/Damascus
      - Asia/Dhaka
      - Asia/Dili
      - Asia/Dubai
      - Asia/Dushanbe
   

# --- truncated at 32 KB (94 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/posthog/refs/heads/main/openapi/posthog-environments-api-openapi.yml