openapi: 3.0.3 info: title: PostHog actions users API version: 1.0.0 description: '' tags: - name: users paths: /api/users/: get: operationId: users_list parameters: - in: query name: email schema: type: string - in: query name: is_staff schema: type: boolean - 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 tags: - users security: - PersonalAPIKeyAuth: - user:read responses: '200': content: application/json: schema: $ref: '#/components/schemas/PaginatedUserList' description: '' x-explicit-tags: - core /api/users/{user_id}/signal_autonomy/: get: operationId: users_signal_autonomy_retrieve description: 'Per-user signal autonomy config (singleton keyed by user). GET /api/users//signal_autonomy/ → current config (or 404) POST /api/users//signal_autonomy/ → create or update DELETE /api/users//signal_autonomy/ → remove (opt out)' parameters: - in: path name: user_id schema: type: string required: true tags: - users security: - PersonalAPIKeyAuth: - user:write responses: '200': content: application/json: schema: $ref: '#/components/schemas/SignalUserAutonomyConfig' description: '' x-explicit-tags: - users - signals post: operationId: users_signal_autonomy_create description: 'Per-user signal autonomy config (singleton keyed by user). GET /api/users//signal_autonomy/ → current config (or 404) POST /api/users//signal_autonomy/ → create or update DELETE /api/users//signal_autonomy/ → remove (opt out)' parameters: - in: path name: user_id schema: type: string required: true tags: - users requestBody: content: application/json: schema: $ref: '#/components/schemas/SignalUserAutonomyConfig' application/x-www-form-urlencoded: schema: $ref: '#/components/schemas/SignalUserAutonomyConfig' multipart/form-data: schema: $ref: '#/components/schemas/SignalUserAutonomyConfig' security: - PersonalAPIKeyAuth: - user:write responses: '200': content: application/json: schema: $ref: '#/components/schemas/SignalUserAutonomyConfig' description: '' x-explicit-tags: - users - signals delete: operationId: users_signal_autonomy_destroy description: 'Per-user signal autonomy config (singleton keyed by user). GET /api/users//signal_autonomy/ → current config (or 404) POST /api/users//signal_autonomy/ → create or update DELETE /api/users//signal_autonomy/ → remove (opt out)' parameters: - in: path name: user_id schema: type: string required: true tags: - users security: - PersonalAPIKeyAuth: - user:write responses: '204': description: No response body x-explicit-tags: - users - signals /api/users/{uuid}/: get: operationId: users_retrieve description: Retrieve a user's profile and settings. Pass `@me` as the UUID to fetch the authenticated user; non-staff callers may only access their own account. parameters: - in: path name: uuid schema: type: string format: uuid required: true tags: - users security: - PersonalAPIKeyAuth: - user:read responses: '200': content: application/json: schema: $ref: '#/components/schemas/User' description: '' x-explicit-tags: - core put: operationId: users_update description: Replace the authenticated user's profile and settings. Pass `@me` as the UUID to update the authenticated user. Prefer the PATCH endpoint for partial updates — PUT requires every writable field to be provided. parameters: - in: path name: uuid schema: type: string format: uuid required: true tags: - users requestBody: content: application/json: schema: $ref: '#/components/schemas/User' application/x-www-form-urlencoded: schema: $ref: '#/components/schemas/User' multipart/form-data: schema: $ref: '#/components/schemas/User' required: true security: - PersonalAPIKeyAuth: - user:write responses: '200': content: application/json: schema: $ref: '#/components/schemas/User' description: '' x-explicit-tags: - core patch: operationId: users_partial_update description: Update one or more of the authenticated user's profile fields or settings. parameters: - in: path name: uuid schema: type: string format: uuid required: true tags: - users requestBody: content: application/json: schema: $ref: '#/components/schemas/PatchedUser' application/x-www-form-urlencoded: schema: $ref: '#/components/schemas/PatchedUser' multipart/form-data: schema: $ref: '#/components/schemas/PatchedUser' security: - PersonalAPIKeyAuth: - user:write responses: '200': content: application/json: schema: $ref: '#/components/schemas/User' description: '' x-explicit-tags: - core delete: operationId: users_destroy parameters: - in: path name: uuid schema: type: string format: uuid required: true tags: - users responses: '204': description: No response body x-explicit-tags: - core /api/users/{uuid}/github_login/: get: operationId: users_github_login_retrieve parameters: - in: path name: uuid schema: type: string format: uuid required: true tags: - users security: - PersonalAPIKeyAuth: - user:read responses: '200': description: No response body x-explicit-tags: - core /api/users/{uuid}/hedgehog_config/: get: operationId: users_hedgehog_config_retrieve parameters: - in: path name: uuid schema: type: string format: uuid required: true tags: - users security: - PersonalAPIKeyAuth: - user:read responses: '200': description: No response body x-explicit-tags: - core patch: operationId: users_hedgehog_config_partial_update parameters: - in: path name: uuid schema: type: string format: uuid required: true tags: - users requestBody: content: application/json: schema: $ref: '#/components/schemas/PatchedUser' application/x-www-form-urlencoded: schema: $ref: '#/components/schemas/PatchedUser' multipart/form-data: schema: $ref: '#/components/schemas/PatchedUser' security: - PersonalAPIKeyAuth: - user:write responses: '200': description: No response body x-explicit-tags: - core /api/users/{uuid}/integrations/: get: operationId: users_integrations_list description: '`/api/users/@me/integrations/` — manage the user''s personal GitHub integrations.' summary: List personal GitHub integrations 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 - in: path name: uuid schema: type: string required: true tags: - users security: - PersonalAPIKeyAuth: - user:read responses: '200': content: application/json: schema: $ref: '#/components/schemas/PaginatedUserGitHubIntegrationListResponseList' description: '' x-explicit-tags: - core /api/users/{uuid}/integrations/github/{installation_id}/: delete: operationId: users_integrations_github_destroy description: Remove a specific GitHub installation by its installation_id. summary: Disconnect a personal GitHub integration parameters: - in: path name: installation_id schema: type: string pattern: ^\d+$ required: true - in: path name: uuid schema: type: string required: true tags: - users security: - PersonalAPIKeyAuth: - user:write responses: '204': description: Integration removed. x-explicit-tags: - core /api/users/{uuid}/integrations/github/{installation_id}/branches/: get: operationId: users_integrations_github_branches_retrieve description: List branches for a repository accessible to a personal GitHub installation. summary: List branches for a personal GitHub installation repository parameters: - in: path name: installation_id schema: type: string pattern: ^\d+$ required: true - in: query name: limit schema: type: integer maximum: 1000 minimum: 1 default: 100 description: Maximum number of branches to return - in: query name: offset schema: type: integer minimum: 0 default: 0 description: Number of branches to skip - in: query name: repo schema: type: string minLength: 1 description: Repository in owner/repo format required: true - in: query name: search schema: type: string default: '' description: Optional case-insensitive branch name search query. - in: path name: uuid schema: type: string required: true tags: - users security: - PersonalAPIKeyAuth: - user:read responses: '200': content: application/json: schema: $ref: '#/components/schemas/GitHubBranchesResponse' description: '' x-explicit-tags: - core /api/users/{uuid}/integrations/github/{installation_id}/repos/: get: operationId: users_integrations_github_repos_retrieve description: List repositories accessible to a specific GitHub installation (paginated, cached). summary: List repositories for a personal GitHub installation parameters: - in: path name: installation_id schema: type: string pattern: ^\d+$ required: true - in: query name: limit schema: type: integer maximum: 500 minimum: 1 default: 100 description: Maximum number of repositories to return per request (max 500). - in: query name: offset schema: type: integer minimum: 0 default: 0 description: Number of repositories to skip before returning results. - in: query name: search schema: type: string default: '' description: Optional case-insensitive repository name search query. - in: path name: uuid schema: type: string required: true tags: - users security: - PersonalAPIKeyAuth: - user:read responses: '200': content: application/json: schema: $ref: '#/components/schemas/GitHubReposResponse' description: '' x-explicit-tags: - core /api/users/{uuid}/integrations/github/{installation_id}/repos/refresh/: post: operationId: users_integrations_github_repos_refresh_create description: Refresh repositories accessible to a specific GitHub installation. summary: Refresh repositories for a personal GitHub installation parameters: - in: path name: installation_id schema: type: string pattern: ^\d+$ required: true - in: path name: uuid schema: type: string required: true tags: - users security: - PersonalAPIKeyAuth: - user:write responses: '200': content: application/json: schema: $ref: '#/components/schemas/GitHubReposRefreshResponse' description: '' x-explicit-tags: - core /api/users/{uuid}/integrations/github/start/: post: operationId: users_integrations_github_start_create description: 'Start GitHub linking: either full App install or OAuth-only (user-to-server). ``**_kwargs`` absorbs ``parent_lookup_uuid`` from the nested ``/api/users/{uuid}/integrations/`` router (same pattern as ``local_evaluation`` under projects). Usually returns ``install_url`` pointing at ``/installations/new`` so the user can pick any GitHub org (new or already connected). GitHub''s install page handles both cases: orgs where the app is installed show "Configure" (no admin needed), orgs where it isn''t show "Install" (needs admin). **PostHog Code fast path:** when ``connect_from`` is ``"posthog_code"``, the current project already has a team-level GitHub installation, and the user has no ``UserIntegration`` for that installation yet, we skip the org picker and redirect straight to ``/login/oauth/authorize`` so the user only authorizes themselves and returns to PostHog Code immediately. In both cases the response key is ``install_url`` for compatibility with callers.' summary: Start GitHub personal integration linking parameters: - in: path name: uuid schema: type: string required: true tags: - users requestBody: content: application/json: schema: $ref: '#/components/schemas/UserGitHubLinkStartRequest' application/x-www-form-urlencoded: schema: $ref: '#/components/schemas/UserGitHubLinkStartRequest' multipart/form-data: schema: $ref: '#/components/schemas/UserGitHubLinkStartRequest' security: - PersonalAPIKeyAuth: - user:write responses: '200': content: application/json: schema: $ref: '#/components/schemas/UserGitHubLinkStartResponse' description: '' x-explicit-tags: - core /api/users/{uuid}/scene_personalisation/: post: operationId: users_scene_personalisation_create parameters: - in: path name: uuid schema: type: string format: uuid required: true tags: - users requestBody: content: application/json: schema: $ref: '#/components/schemas/User' application/x-www-form-urlencoded: schema: $ref: '#/components/schemas/User' multipart/form-data: schema: $ref: '#/components/schemas/User' required: true responses: '200': description: No response body x-explicit-tags: - core /api/users/{uuid}/start_2fa_setup/: get: operationId: users_start_2fa_setup_retrieve parameters: - in: path name: uuid schema: type: string format: uuid required: true tags: - users responses: '200': description: No response body x-explicit-tags: - core /api/users/{uuid}/two_factor_backup_codes/: post: operationId: users_two_factor_backup_codes_create description: Generate new backup codes, invalidating any existing ones parameters: - in: path name: uuid schema: type: string format: uuid required: true tags: - users requestBody: content: application/json: schema: $ref: '#/components/schemas/User' application/x-www-form-urlencoded: schema: $ref: '#/components/schemas/User' multipart/form-data: schema: $ref: '#/components/schemas/User' required: true responses: '200': description: No response body x-explicit-tags: - core /api/users/{uuid}/two_factor_disable/: post: operationId: users_two_factor_disable_create description: Disable 2FA and remove all related devices parameters: - in: path name: uuid schema: type: string format: uuid required: true tags: - users requestBody: content: application/json: schema: $ref: '#/components/schemas/User' application/x-www-form-urlencoded: schema: $ref: '#/components/schemas/User' multipart/form-data: schema: $ref: '#/components/schemas/User' required: true responses: '200': description: No response body x-explicit-tags: - core /api/users/{uuid}/two_factor_start_setup/: get: operationId: users_two_factor_start_setup_retrieve parameters: - in: path name: uuid schema: type: string format: uuid required: true tags: - users responses: '200': description: No response body x-explicit-tags: - core /api/users/{uuid}/two_factor_status/: get: operationId: users_two_factor_status_retrieve description: Get current 2FA status including backup codes if enabled parameters: - in: path name: uuid schema: type: string format: uuid required: true tags: - users responses: '200': description: No response body x-explicit-tags: - core /api/users/{uuid}/two_factor_validate/: post: operationId: users_two_factor_validate_create parameters: - in: path name: uuid schema: type: string format: uuid required: true tags: - users requestBody: content: application/json: schema: $ref: '#/components/schemas/User' application/x-www-form-urlencoded: schema: $ref: '#/components/schemas/User' multipart/form-data: schema: $ref: '#/components/schemas/User' required: true responses: '200': description: No response body x-explicit-tags: - core /api/users/{uuid}/validate_2fa/: post: operationId: users_validate_2fa_create parameters: - in: path name: uuid schema: type: string format: uuid required: true tags: - users requestBody: content: application/json: schema: $ref: '#/components/schemas/User' application/x-www-form-urlencoded: schema: $ref: '#/components/schemas/User' multipart/form-data: schema: $ref: '#/components/schemas/User' required: true responses: '200': description: No response body x-explicit-tags: - core /api/users/cancel_email_change_request/: patch: operationId: users_cancel_email_change_request_partial_update tags: - users requestBody: content: application/json: schema: $ref: '#/components/schemas/PatchedUser' application/x-www-form-urlencoded: schema: $ref: '#/components/schemas/PatchedUser' multipart/form-data: schema: $ref: '#/components/schemas/PatchedUser' responses: '200': description: No response body x-explicit-tags: - core /api/users/request_email_verification/: post: operationId: users_request_email_verification_create tags: - users requestBody: content: application/json: schema: $ref: '#/components/schemas/User' application/x-www-form-urlencoded: schema: $ref: '#/components/schemas/User' multipart/form-data: schema: $ref: '#/components/schemas/User' required: true security: - {} responses: '200': description: No response body x-explicit-tags: - core /api/users/verify_email/: post: operationId: users_verify_email_create tags: - users requestBody: content: application/json: schema: $ref: '#/components/schemas/User' application/x-www-form-urlencoded: schema: $ref: '#/components/schemas/User' multipart/form-data: schema: $ref: '#/components/schemas/User' required: true security: - {} responses: '200': description: No response body x-explicit-tags: - core components: schemas: GitHubReposResponse: type: object properties: repositories: type: array items: $ref: '#/components/schemas/GitHubRepo' has_more: type: boolean description: Whether more repositories are available beyond this page. required: - has_more - repositories GitHubReposRefreshResponse: type: object properties: repositories: type: array items: $ref: '#/components/schemas/GitHubRepo' description: The refreshed repository cache. required: - repositories PaginatedUserGitHubIntegrationListResponseList: type: object required: - count - results properties: count: type: integer example: 123 next: type: string nullable: true format: uri example: http://api.example.org/accounts/?offset=400&limit=100 previous: type: string nullable: true format: uri example: http://api.example.org/accounts/?offset=200&limit=100 results: type: array items: $ref: '#/components/schemas/UserGitHubIntegrationListResponse' UserGitHubLinkStartResponse: type: object properties: install_url: type: string description: URL to open in the browser to install or authorize the GitHub App for this user. connect_flow: type: string description: OAuth or install flow used for this GitHub connection. required: - connect_flow - install_url PendingInvite: type: object description: Shape of each item in UserSerializer.pending_invites. properties: id: type: string target_email: type: string format: email organization_id: type: string organization_name: type: string created_at: type: string format: date-time required: - created_at - id - organization_id - organization_name - target_email RoleAtOrganizationEnum: enum: - engineering - data - product - founder - leadership - marketing - sales - other type: string description: '* `engineering` - Engineering * `data` - Data * `product` - Product Management * `founder` - Founder * `leadership` - Leadership * `marketing` - Marketing * `sales` - Sales / Success * `other` - Other' User: type: object properties: date_joined: type: string format: date-time readOnly: true uuid: type: string format: uuid readOnly: true distinct_id: type: string readOnly: true nullable: true first_name: type: string maxLength: 150 last_name: type: string maxLength: 150 email: type: string format: email title: Email address maxLength: 254 pending_email: type: string format: email readOnly: true nullable: true title: Pending email address awaiting verification is_email_verified: type: boolean readOnly: true nullable: true notification_settings: type: object additionalProperties: true description: Map of notification preferences. Keys include `plugin_disabled`, `all_weekly_report_disabled`, `project_weekly_digest_disabled`, `error_tracking_weekly_digest_project_enabled`, `web_analytics_weekly_digest_project_enabled`, `organization_member_join_email_disabled`, `data_pipeline_error_threshold` (number between 0.0 and 1.0), and other per-topic switches. Values are either booleans, or (for per-project/per-resource keys) a map of IDs to booleans. Only the keys you send are updated — other preferences stay as-is. anonymize_data: type: boolean nullable: true description: Whether PostHog should anonymize events captured for this user when identified. allow_impersonation: type: boolean nullable: true toolbar_mode: nullable: true oneOf: - $ref: '#/components/schemas/ToolbarModeEnum' - $ref: '#/components/schemas/BlankEnum' - $ref: '#/components/schemas/NullEnum' has_password: type: boolean readOnly: true id: type: integer readOnly: true is_staff: type: boolean title: Staff status description: Designates whether the user can log into this admin site. is_impersonated: type: boolean nullable: true readOnly: true is_impersonated_until: type: string nullable: true readOnly: true is_impersonated_read_only: type: boolean nullable: true readOnly: true sensitive_session_expires_at: type: string nullable: true readOnly: true team: allOf: - $ref: '#/components/schemas/TeamBasic' readOnly: true organization: allOf: - $ref: '#/components/schemas/Organization' readOnly: true organizations: type: array items: $ref: '#/components/schemas/OrganizationBasic' readOnly: true set_current_organization: type: string writeOnly: true set_current_team: type: string writeOnly: true password: type: string writeOnly: true maxLength: 128 current_password: type: string writeOnly: true description: The user's current password. Required when changing `password` if the user already has a usable password set. events_column_config: {} is_2fa_enabled: type: boolean readOnly: true has_social_auth: type: boolean readOnly: true has_sso_enforcement: type: boolean readOnly: true has_seen_product_intro_for: nullable: true scene_personalisation: type: array items: $ref: '#/components/schemas/ScenePersonalisationBasic' readOnly: true theme_mode: nullable: true oneOf: - $ref: '#/components/schemas/ThemeModeEnum' - $ref: '#/components/schemas/BlankEnum' - $ref: '#/components/schemas/NullEnum' hedgehog_config: nullable: true allow_sidebar_suggestions: type: boolean nullable: true shortcut_position: nullable: true oneOf: - $ref: '#/components/schemas/ShortcutPositionEnum' - $ref: '#/components/schemas/BlankEnum' - $ref: '#/components/schemas/NullEnum' role_at_organization: $ref: '#/components/schemas/RoleAtOrganizationEnum' passkeys_enabled_for_2fa: type: boolean nullable: true description: Whether passkeys are enabled for 2FA authentication. Users can disable this to use only TOTP for 2FA while keeping passkeys for login. is_organization_first_user: type: boolean nullable: true readOnly: true pending_invites: type: array items: $ref: '#/components/schemas/PendingInvite' readOnly: true required: - date_joined - distinct_id - email - has_password - has_social_auth - has_sso_enforcement - id - is_2fa_enabled - is_email_verified - is_impersonated - is_impersonated_read_only - is_impersonated_until - is_organization_first_user - organization - organizations - password - pending_email - pending_invites - scene_personalisation - sensitive_session_expires_at - team - uuid 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 UserGitHubAccount: type: object properties: type: type: string nullable: true description: GitHub account type for the installation (e.g. User or Organization). name: type: string nullable: true description: GitHub login or organization name tied to the installation. _User: type: object properties: id: type: integer readOnly: true uuid: type: string format: uuid readOnly: true first_name: type: string readOnly: true last_name: type: string readOnly: true email: type: string format: email readOnly: true title: Email address required: - email - first_name - id - last_name - uuid PluginsAccessLevelEnum: enum: - 0 - 3 - 6 - 9 type: integer description: '* `0` - none * `3` - config * `6` - install * `9` - root' 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 - Asia/Famagusta - Asia/Gaza - Asia/Harbin - Asia/Hebron - Asia/Ho_Chi_Minh - Asia/Hong_Kong - Asia/Hovd - Asia/Irkutsk - Asia/Istanbul - Asia/Jakarta - Asia/Jayapura - Asia/Jerusalem - Asia/Kabul - Asia/Kamchatka - Asia/Karachi - Asia/Kashgar - Asia/Kathmandu - Asia/Katmandu - Asia/Khandyga - Asia/Kolkata - Asia/Krasnoyarsk - Asia/Kuala_Lumpur - Asia/Kuching - Asia/Kuwait - Asia/Macao - Asia/Macau - Asia/Magadan - Asia/Makassar - Asia/Manila - Asia/Muscat - Asia/Nicosia - Asia/Novokuznetsk - Asia/Novosibirsk - Asia/Omsk - Asia/Oral - Asia/Phnom_Penh - Asia/Pontianak - Asia/Pyongyang - Asia/Qatar - Asia/Qostanay - Asia/Qyzylorda - Asia/Rangoon - Asia/Riyadh - Asia/Saigon - Asia/Sakhalin - Asia/Samarkand - Asia/Seoul - Asia/Shanghai - Asia/Singapore - Asia/Srednekolymsk - Asia/Taipei - Asia/Tashkent - Asia/Tbilisi - Asia/Tehran - Asia/Tel_Aviv - Asia/Thimbu - Asia/Thimphu - Asia/Tokyo - Asia/Tomsk - Asia/Ujung_Pandang - Asia/Ulaanbaatar - Asia/Ulan_Bator - Asia/Urumqi - Asia/Ust-Nera - Asia/Vientiane - Asia/Vladivostok - Asia/Yakutsk - Asia/Yangon - Asia/Yekaterinburg - Asia/Yerevan - Atlantic/Azores - Atlantic/Bermuda - Atlantic/Canary - Atlantic/Cape_Verde - Atlantic/Faeroe - Atlantic/Faroe - Atlantic/Jan_Mayen - Atlantic/Madeira - Atlantic/Reykjavik - Atlantic/South_Georgia - Atlantic/St_Helena - Atlantic/Stanley - Australia/ACT - Australia/Adelaide - Australia/Brisbane - Australia/Broken_Hill - Australia/Canberra - Australia/Currie - Australia/Darwin - Australia/Eucla - Australia/Hobart - Australia/LHI - Australia/Lindeman - Australia/Lord_Howe - Australia/Melbourne - Australia/NSW - Australia/North - Australia/Perth - Australia/Queensland - Australia/South - Australia/Sydney - Australia/Tasmania - Australia/Victoria - Australia/West - Australia/Yancowinna - Brazil/Acre - Brazil/DeNoronha - Brazil/East - Brazil/West - CET - CST6CDT - Canada/Atlantic - Canada/Central - Canada/Eastern - Canada/Mountain - Canada/Newfoundland - Canada/Pacific - Canada/Saskatchewan - Canada/Yukon - Chile/Continental - Chile/EasterIsland - Cuba - EET - EST - EST5EDT - Egypt - Eire - Etc/GMT - Etc/GMT+0 - Etc/GMT+1 - Etc/GMT+10 - Etc/GMT+11 - Etc/GMT+12 - Etc/GMT+2 - Etc/GMT+3 - Etc/GMT+4 - Etc/GMT+5 - Etc/GMT+6 - Etc/GMT+7 - Etc/GMT+8 - Etc/GMT+9 - Etc/GMT-0 - Etc/GMT-1 - Etc/GMT-10 - Etc/GMT-11 - Etc/GMT-12 - Etc/GMT-13 - Etc/GMT-14 - Etc/GMT-2 - Etc/GMT-3 - Etc/GMT-4 - Etc/GMT-5 - Etc/GMT-6 - Etc/GMT-7 - Etc/GMT-8 - Etc/GMT-9 - Etc/GMT0 - Etc/Greenwich - Etc/UCT - Etc/UTC - Etc/Universal - Etc/Zulu - Europe/Amsterdam - Europe/Andorra - Europe/Astrakhan - Europe/Athens - Europe/Belfast - Europe/Belgrade - Europe/Berlin - Europe/Bratislava - Europe/Brussels - Europe/Bucharest - Europe/Budapest - Europe/Busingen - Europe/Chisinau - Europe/Copenhagen - Europe/Dublin - Europe/Gibraltar - Europe/Guernsey - Europe/Helsinki - Europe/Isle_of_Man - Europe/Istanbul - Europe/Jersey - Europe/Kaliningrad - Europe/Kiev - Europe/Kirov - Europe/Kyiv - Europe/Lisbon - Europe/Ljubljana - Europe/London - Europe/Luxembourg - Europe/Madrid - Europe/Malta - Europe/Mariehamn - Europe/Minsk - Europe/Monaco - Europe/Moscow - Europe/Nicosia - Europe/Oslo - Europe/Paris - Europe/Podgorica - Europe/Prague - Europe/Riga - Europe/Rome - Europe/Samara - Europe/San_Marino - Europe/Sarajevo - Europe/Saratov - Europe/Simferopol - Europe/Skopje - Europe/Sofia - Europe/Stockholm - Europe/Tallinn - Europe/Tirane - Europe/Tiraspol - Europe/Ulyanovsk - Europe/Uzhgorod - Europe/Vaduz - Europe/Vatican - Europe/Vienna - Europe/Vilnius - Europe/Volgograd - Europe/Warsaw - Europe/Zagreb - Europe/Zaporozhye - Europe/Zurich - GB - GB-Eire - GMT - GMT+0 - GMT-0 - GMT0 - Greenwich - HST - Hongkong - Iceland - Indian/Antananarivo - Indian/Chagos - Indian/Christmas - Indian/Cocos - Indian/Comoro - Indian/Kerguelen - Indian/Mahe - Indian/Maldives - Indian/Mauritius - Indian/Mayotte - Indian/Reunion - Iran - Israel - Jamaica - Japan - Kwajalein - Libya - MET - MST - MST7MDT - Mexico/BajaNorte - Mexico/BajaSur - Mexico/General - NZ - NZ-CHAT - Navajo - PRC - PST8PDT - Pacific/Apia - Pacific/Auckland - Pacific/Bougainville - Pacific/Chatham - Pacific/Chuuk - Pacific/Easter - Pacific/Efate - Pacific/Enderbury - Pacific/Fakaofo - Pacific/Fiji - Pacific/Funafuti - Pacific/Galapagos - Pacific/Gambier - Pacific/Guadalcanal - Pacific/Guam - Pacific/Honolulu - Pacific/Johnston - Pacific/Kanton - Pacific/Kiritimati - Pacific/Kosrae - Pacific/Kwajalein - Pacific/Majuro - Pacific/Marquesas - Pacific/Midway - Pacific/Nauru - Pacific/Niue - Pacific/Norfolk - Pacific/Noumea - Pacific/Pago_Pago - Pacific/Palau - Pacific/Pitcairn - Pacific/Pohnpei - Pacific/Ponape - Pacific/Port_Moresby - Pacific/Rarotonga - Pacific/Saipan - Pacific/Samoa - Pacific/Tahiti - Pacific/Tarawa - Pacific/Tongatapu - Pacific/Truk - Pacific/Wake - Pacific/Wallis - Pacific/Yap - Poland - Portugal - ROC - ROK - Singapore - Turkey - UCT - US/Alaska - US/Aleutian - US/Arizona - US/Central - US/East-Indiana - US/Eastern - US/Hawaii - US/Indiana-Starke - US/Michigan - US/Mountain - US/Pacific - US/Samoa - UTC - Universal - W-SU - WET - Zulu type: string description: '* `Africa/Abidjan` - Africa/Abidjan * `Africa/Accra` - Africa/Accra * `Africa/Addis_Ababa` - Africa/Addis_Ababa * `Africa/Algiers` - Africa/Algiers * `Africa/Asmara` - Africa/Asmara * `Africa/Asmera` - Africa/Asmera * `Africa/Bamako` - Africa/Bamako * `Africa/Bangui` - Africa/Bangui * `Africa/Banjul` - Africa/Banjul * `Africa/Bissau` - Africa/Bissau * `Africa/Blantyre` - Africa/Blantyre * `Africa/Brazzaville` - Africa/Brazzaville * `Africa/Bujumbura` - Africa/Bujumbura * `Africa/Cairo` - Africa/Cairo * `Africa/Casablanca` - Africa/Casablanca * `Africa/Ceuta` - Africa/Ceuta * `Africa/Conakry` - Africa/Conakry * `Africa/Dakar` - Africa/Dakar * `Africa/Dar_es_Salaam` - Africa/Dar_es_Salaam * `Africa/Djibouti` - Africa/Djibouti * `Africa/Douala` - Africa/Douala * `Africa/El_Aaiun` - Africa/El_Aaiun * `Africa/Freetown` - Africa/Freetown * `Africa/Gaborone` - Africa/Gaborone * `Africa/Harare` - Africa/Harare * `Africa/Johannesburg` - Africa/Johannesburg * `Africa/Juba` - Africa/Juba * `Africa/Kampala` - Africa/Kampala * `Africa/Khartoum` - Africa/Khartoum * `Africa/Kigali` - Africa/Kigali * `Africa/Kinshasa` - Africa/Kinshasa * `Africa/Lagos` - Africa/Lagos * `Africa/Libreville` - Africa/Libreville * `Africa/Lome` - Africa/Lome * `Africa/Luanda` - Africa/Luanda * `Africa/Lubumbashi` - Africa/Lubumbashi * `Africa/Lusaka` - Africa/Lusaka * `Africa/Malabo` - Africa/Malabo * `Africa/Maputo` - Africa/Maputo * `Africa/Maseru` - Africa/Maseru * `Africa/Mbabane` - Africa/Mbabane * `Africa/Mogadishu` - Africa/Mogadishu * `Africa/Monrovia` - Africa/Monrovia * `Africa/Nairobi` - Africa/Nairobi * `Africa/Ndjamena` - Africa/Ndjamena * `Africa/Niamey` - Africa/Niamey * `Africa/Nouakchott` - Africa/Nouakchott * `Africa/Ouagadougou` - Africa/Ouagadougou * `Africa/Porto-Novo` - Africa/Porto-Novo * `Africa/Sao_Tome` - Africa/Sao_Tome * `Africa/Timbuktu` - Africa/Timbuktu * `Africa/Tripoli` - Africa/Tripoli * `Africa/Tunis` - Africa/Tunis * `Africa/Windhoek` - Africa/Windhoek * `America/Adak` - America/Adak * `America/Anchorage` - America/Anchorage * `America/Anguilla` - America/Anguilla * `America/Antigua` - America/Antigua * `America/Araguaina` - America/Araguaina * `America/Argentina/Buenos_Aires` - America/Argentina/Buenos_Aires * `America/Argentina/Catamarca` - America/Argentina/Catamarca * `America/Argentina/ComodRivadavia` - America/Argentina/ComodRivadavia * `America/Argentina/Cordoba` - America/Argentina/Cordoba * `America/Argentina/Jujuy` - America/Argentina/Jujuy * `America/Argentina/La_Rioja` - America/Argentina/La_Rioja * `America/Argentina/Mendoza` - America/Argentina/Mendoza * `America/Argentina/Rio_Gallegos` - America/Argentina/Rio_Gallegos * `America/Argentina/Salta` - America/Argentina/Salta * `America/Argentina/San_Juan` - America/Argentina/San_Juan * `America/Argentina/San_Luis` - America/Argentina/San_Luis * `America/Argentina/Tucuman` - America/Argentina/Tucuman * `America/Argentina/Ushuaia` - America/Argentina/Ushuaia * `America/Aruba` - America/Aruba * `America/Asuncion` - America/Asuncion * `America/Atikokan` - America/Atikokan * `America/Atka` - America/Atka * `America/Bahia` - America/Bahia * `America/Bahia_Banderas` - America/Bahia_Banderas * `America/Barbados` - America/Barbados * `America/Belem` - America/Belem * `America/Belize` - America/Belize * `America/Blanc-Sablon` - America/Blanc-Sablon * `America/Boa_Vista` - America/Boa_Vista * `America/Bogota` - America/Bogota * `America/Boise` - America/Boise * `America/Buenos_Aires` - America/Buenos_Aires * `America/Cambridge_Bay` - America/Cambridge_Bay * `America/Campo_Grande` - America/Campo_Grande * `America/Cancun` - America/Cancun * `America/Caracas` - America/Caracas * `America/Catamarca` - America/Catamarca * `America/Cayenne` - America/Cayenne * `America/Cayman` - America/Cayman * `America/Chicago` - America/Chicago * `America/Chihuahua` - America/Chihuahua * `America/Ciudad_Juarez` - America/Ciudad_Juarez * `America/Coral_Harbour` - America/Coral_Harbour * `America/Cordoba` - America/Cordoba * `America/Costa_Rica` - America/Costa_Rica * `America/Creston` - America/Creston * `America/Cuiaba` - America/Cuiaba * `America/Curacao` - America/Curacao * `America/Danmarkshavn` - America/Danmarkshavn * `America/Dawson` - America/Dawson * `America/Dawson_Creek` - America/Dawson_Creek * `America/Denver` - America/Denver * `America/Detroit` - America/Detroit * `America/Dominica` - America/Dominica * `America/Edmonton` - America/Edmonton * `America/Eirunepe` - America/Eirunepe * `America/El_Salvador` - America/El_Salvador * `America/Ensenada` - America/Ensenada * `America/Fort_Nelson` - America/Fort_Nelson * `America/Fort_Wayne` - America/Fort_Wayne * `America/Fortaleza` - America/Fortaleza * `America/Glace_Bay` - America/Glace_Bay * `America/Godthab` - America/Godthab * `America/Goose_Bay` - America/Goose_Bay * `America/Grand_Turk` - America/Grand_Turk * `America/Grenada` - America/Grenada * `America/Guadeloupe` - America/Guadeloupe * `America/Guatemala` - America/Guatemala * `America/Guayaquil` - America/Guayaquil * `America/Guyana` - America/Guyana * `America/Halifax` - America/Halifax * `America/Havana` - America/Havana * `America/Hermosillo` - America/Hermosillo * `America/Indiana/Indianapolis` - America/Indiana/Indianapolis * `America/Indiana/Knox` - America/Indiana/Knox * `America/Indiana/Marengo` - America/Indiana/Marengo * `America/Indiana/Petersburg` - America/Indiana/Petersburg * `America/Indiana/Tell_City` - America/Indiana/Tell_City * `America/Indiana/Vevay` - America/Indiana/Vevay * `America/Indiana/Vincennes` - America/Indiana/Vincennes * `America/Indiana/Winamac` - America/Indiana/Winamac * `America/Indianapolis` - America/Indianapolis * `America/Inuvik` - America/Inuvik * `America/Iqaluit` - America/Iqaluit * `America/Jamaica` - America/Jamaica * `America/Jujuy` - America/Jujuy * `America/Juneau` - America/Juneau * `America/Kentucky/Louisville` - America/Kentucky/Louisville * `America/Kentucky/Monticello` - America/Kentucky/Monticello * `America/Knox_IN` - America/Knox_IN * `America/Kralendijk` - America/Kralendijk * `America/La_Paz` - America/La_Paz * `America/Lima` - America/Lima * `America/Los_Angeles` - America/Los_Angeles * `America/Louisville` - America/Louisville * `America/Lower_Princes` - America/Lower_Princes * `America/Maceio` - America/Maceio * `America/Managua` - America/Managua * `America/Manaus` - America/Manaus * `America/Marigot` - America/Marigot * `America/Martinique` - America/Martinique * `America/Matamoros` - America/Matamoros * `America/Mazatlan` - America/Mazatlan * `America/Mendoza` - America/Mendoza * `America/Menominee` - America/Menominee * `America/Merida` - America/Merida * `America/Metlakatla` - America/Metlakatla * `America/Mexico_City` - America/Mexico_City * `America/Miquelon` - America/Miquelon * `America/Moncton` - America/Moncton * `America/Monterrey` - America/Monterrey * `America/Montevideo` - America/Montevideo * `America/Montreal` - America/Montreal * `America/Montserrat` - America/Montserrat * `America/Nassau` - America/Nassau * `America/New_York` - America/New_York * `America/Nipigon` - America/Nipigon * `America/Nome` - America/Nome * `America/Noronha` - America/Noronha * `America/North_Dakota/Beulah` - America/North_Dakota/Beulah * `America/North_Dakota/Center` - America/North_Dakota/Center * `America/North_Dakota/New_Salem` - America/North_Dakota/New_Salem * `America/Nuuk` - America/Nuuk * `America/Ojinaga` - America/Ojinaga * `America/Panama` - America/Panama * `America/Pangnirtung` - America/Pangnirtung * `America/Paramaribo` - America/Paramaribo * `America/Phoenix` - America/Phoenix * `America/Port-au-Prince` - America/Port-au-Prince * `America/Port_of_Spain` - America/Port_of_Spain * `America/Porto_Acre` - America/Porto_Acre * `America/Porto_Velho` - America/Porto_Velho * `America/Puerto_Rico` - America/Puerto_Rico * `America/Punta_Arenas` - America/Punta_Arenas * `America/Rainy_River` - America/Rainy_River * `America/Rankin_Inlet` - America/Rankin_Inlet * `America/Recife` - America/Recife * `America/Regina` - America/Regina * `America/Resolute` - America/Resolute * `America/Rio_Branco` - America/Rio_Branco * `America/Rosario` - America/Rosario * `America/Santa_Isabel` - America/Santa_Isabel * `America/Santarem` - America/Santarem * `America/Santiago` - America/Santiago * `America/Santo_Domingo` - America/Santo_Domingo * `America/Sao_Paulo` - America/Sao_Paulo * `America/Scoresbysund` - America/Scoresbysund * `America/Shiprock` - America/Shiprock * `America/Sitka` - America/Sitka * `America/St_Barthelemy` - America/St_Barthelemy * `America/St_Johns` - America/St_Johns * `America/St_Kitts` - America/St_Kitts * `America/St_Lucia` - America/St_Lucia * `America/St_Thomas` - America/St_Thomas * `America/St_Vincent` - America/St_Vincent * `America/Swift_Current` - America/Swift_Current * `America/Tegucigalpa` - America/Tegucigalpa * `America/Thule` - America/Thule * `America/Thunder_Bay` - America/Thunder_Bay * `America/Tijuana` - America/Tijuana * `America/Toronto` - America/Toronto * `America/Tortola` - America/Tortola * `America/Vancouver` - America/Vancouver * `America/Virgin` - America/Virgin * `America/Whitehorse` - America/Whitehorse * `America/Winnipeg` - America/Winnipeg * `America/Yakutat` - America/Yakutat * `America/Yellowknife` - America/Yellowknife * `Antarctica/Casey` - Antarctica/Casey * `Antarctica/Davis` - Antarctica/Davis * `Antarctica/DumontDUrville` - Antarctica/DumontDUrville * `Antarctica/Macquarie` - Antarctica/Macquarie * `Antarctica/Mawson` - Antarctica/Mawson * `Antarctica/McMurdo` - Antarctica/McMurdo * `Antarctica/Palmer` - Antarctica/Palmer * `Antarctica/Rothera` - Antarctica/Rothera * `Antarctica/South_Pole` - Antarctica/South_Pole * `Antarctica/Syowa` - Antarctica/Syowa * `Antarctica/Troll` - Antarctica/Troll * `Antarctica/Vostok` - Antarctica/Vostok * `Arctic/Longyearbyen` - Arctic/Longyearbyen * `Asia/Aden` - Asia/Aden * `Asia/Almaty` - Asia/Almaty * `Asia/Amman` - Asia/Amman * `Asia/Anadyr` - Asia/Anadyr * `Asia/Aqtau` - Asia/Aqtau * `Asia/Aqtobe` - Asia/Aqtobe * `Asia/Ashgabat` - Asia/Ashgabat * `Asia/Ashkhabad` - Asia/Ashkhabad * `Asia/Atyrau` - Asia/Atyrau * `Asia/Baghdad` - Asia/Baghdad * `Asia/Bahrain` - Asia/Bahrain * `Asia/Baku` - Asia/Baku * `Asia/Bangkok` - Asia/Bangkok * `Asia/Barnaul` - Asia/Barnaul * `Asia/Beirut` - Asia/Beirut * `Asia/Bishkek` - Asia/Bishkek * `Asia/Brunei` - Asia/Brunei * `Asia/Calcutta` - Asia/Calcutta * `Asia/Chita` - Asia/Chita * `Asia/Choibalsan` - Asia/Choibalsan * `Asia/Chongqing` - Asia/Chongqing * `Asia/Chungking` - Asia/Chungking * `Asia/Colombo` - Asia/Colombo * `Asia/Dacca` - Asia/Dacca * `Asia/Damascus` - Asia/Damascus * `Asia/Dhaka` - Asia/Dhaka * `Asia/Dili` - Asia/Dili * `Asia/Dubai` - Asia/Dubai * `Asia/Dushanbe` - Asia/Dushanbe * `Asia/Famagusta` - Asia/Famagusta * `Asia/Gaza` - Asia/Gaza * `Asia/Harbin` - Asia/Harbin * `Asia/Hebron` - Asia/Hebron * `Asia/Ho_Chi_Minh` - Asia/Ho_Chi_Minh * `Asia/Hong_Kong` - Asia/Hong_Kong * `Asia/Hovd` - Asia/Hovd * `Asia/Irkutsk` - Asia/Irkutsk * `Asia/Istanbul` - Asia/Istanbul * `Asia/Jakarta` - Asia/Jakarta * `Asia/Jayapura` - Asia/Jayapura * `Asia/Jerusalem` - Asia/Jerusalem * `Asia/Kabul` - Asia/Kabul * `Asia/Kamchatka` - Asia/Kamchatka * `Asia/Karachi` - Asia/Karachi * `Asia/Kashgar` - Asia/Kashgar * `Asia/Kathmandu` - Asia/Kathmandu * `Asia/Katmandu` - Asia/Katmandu * `Asia/Khandyga` - Asia/Khandyga * `Asia/Kolkata` - Asia/Kolkata * `Asia/Krasnoyarsk` - Asia/Krasnoyarsk * `Asia/Kuala_Lumpur` - Asia/Kuala_Lumpur * `Asia/Kuching` - Asia/Kuching * `Asia/Kuwait` - Asia/Kuwait * `Asia/Macao` - Asia/Macao * `Asia/Macau` - Asia/Macau * `Asia/Magadan` - Asia/Magadan * `Asia/Makassar` - Asia/Makassar * `Asia/Manila` - Asia/Manila * `Asia/Muscat` - Asia/Muscat * `Asia/Nicosia` - Asia/Nicosia * `Asia/Novokuznetsk` - Asia/Novokuznetsk * `Asia/Novosibirsk` - Asia/Novosibirsk * `Asia/Omsk` - Asia/Omsk * `Asia/Oral` - Asia/Oral * `Asia/Phnom_Penh` - Asia/Phnom_Penh * `Asia/Pontianak` - Asia/Pontianak * `Asia/Pyongyang` - Asia/Pyongyang * `Asia/Qatar` - Asia/Qatar * `Asia/Qostanay` - Asia/Qostanay * `Asia/Qyzylorda` - Asia/Qyzylorda * `Asia/Rangoon` - Asia/Rangoon * `Asia/Riyadh` - Asia/Riyadh * `Asia/Saigon` - Asia/Saigon * `Asia/Sakhalin` - Asia/Sakhalin * `Asia/Samarkand` - Asia/Samarkand * `Asia/Seoul` - Asia/Seoul * `Asia/Shanghai` - Asia/Shanghai * `Asia/Singapore` - Asia/Singapore * `Asia/Srednekolymsk` - Asia/Srednekolymsk * `Asia/Taipei` - Asia/Taipei * `Asia/Tashkent` - Asia/Tashkent * `Asia/Tbilisi` - Asia/Tbilisi * `Asia/Tehran` - Asia/Tehran * `Asia/Tel_Aviv` - Asia/Tel_Aviv * `Asia/Thimbu` - Asia/Thimbu * `Asia/Thimphu` - Asia/Thimphu * `Asia/Tokyo` - Asia/Tokyo * `Asia/Tomsk` - Asia/Tomsk * `Asia/Ujung_Pandang` - Asia/Ujung_Pandang * `Asia/Ulaanbaatar` - Asia/Ulaanbaatar * `Asia/Ulan_Bator` - Asia/Ulan_Bator * `Asia/Urumqi` - Asia/Urumqi * `Asia/Ust-Nera` - Asia/Ust-Nera * `Asia/Vientiane` - Asia/Vientiane * `Asia/Vladivostok` - Asia/Vladivostok * `Asia/Yakutsk` - Asia/Yakutsk * `Asia/Yangon` - Asia/Yangon * `Asia/Yekaterinburg` - Asia/Yekaterinburg * `Asia/Yerevan` - Asia/Yerevan * `Atlantic/Azores` - Atlantic/Azores * `Atlantic/Bermuda` - Atlantic/Bermuda * `Atlantic/Canary` - Atlantic/Canary * `Atlantic/Cape_Verde` - Atlantic/Cape_Verde * `Atlantic/Faeroe` - Atlantic/Faeroe * `Atlantic/Faroe` - Atlantic/Faroe * `Atlantic/Jan_Mayen` - Atlantic/Jan_Mayen * `Atlantic/Madeira` - Atlantic/Madeira * `Atlantic/Reykjavik` - Atlantic/Reykjavik * `Atlantic/South_Georgia` - Atlantic/South_Georgia * `Atlantic/St_Helena` - Atlantic/St_Helena * `Atlantic/Stanley` - Atlantic/Stanley * `Australia/ACT` - Australia/ACT * `Australia/Adelaide` - Australia/Adelaide * `Australia/Brisbane` - Australia/Brisbane * `Australia/Broken_Hill` - Australia/Broken_Hill * `Australia/Canberra` - Australia/Canberra * `Australia/Currie` - Australia/Currie * `Australia/Darwin` - Australia/Darwin * `Australia/Eucla` - Australia/Eucla * `Australia/Hobart` - Australia/Hobart * `Australia/LHI` - Australia/LHI * `Australia/Lindeman` - Australia/Lindeman * `Australia/Lord_Howe` - Australia/Lord_Howe * `Australia/Melbourne` - Australia/Melbourne * `Australia/NSW` - Australia/NSW * `Australia/North` - Australia/North * `Australia/Perth` - Australia/Perth * `Australia/Queensland` - Australia/Queensland * `Australia/South` - Australia/South * `Australia/Sydney` - Australia/Sydney * `Australia/Tasmania` - Australia/Tasmania * `Australia/Victoria` - Australia/Victoria * `Australia/West` - Australia/West * `Australia/Yancowinna` - Australia/Yancowinna * `Brazil/Acre` - Brazil/Acre * `Brazil/DeNoronha` - Brazil/DeNoronha * `Brazil/East` - Brazil/East * `Brazil/West` - Brazil/West * `CET` - CET * `CST6CDT` - CST6CDT * `Canada/Atlantic` - Canada/Atlantic * `Canada/Central` - Canada/Central * `Canada/Eastern` - Canada/Eastern * `Canada/Mountain` - Canada/Mountain * `Canada/Newfoundland` - Canada/Newfoundland * `Canada/Pacific` - Canada/Pacific * `Canada/Saskatchewan` - Canada/Saskatchewan * `Canada/Yukon` - Canada/Yukon * `Chile/Continental` - Chile/Continental * `Chile/EasterIsland` - Chile/EasterIsland * `Cuba` - Cuba * `EET` - EET * `EST` - EST * `EST5EDT` - EST5EDT * `Egypt` - Egypt * `Eire` - Eire * `Etc/GMT` - Etc/GMT * `Etc/GMT+0` - Etc/GMT+0 * `Etc/GMT+1` - Etc/GMT+1 * `Etc/GMT+10` - Etc/GMT+10 * `Etc/GMT+11` - Etc/GMT+11 * `Etc/GMT+12` - Etc/GMT+12 * `Etc/GMT+2` - Etc/GMT+2 * `Etc/GMT+3` - Etc/GMT+3 * `Etc/GMT+4` - Etc/GMT+4 * `Etc/GMT+5` - Etc/GMT+5 * `Etc/GMT+6` - Etc/GMT+6 * `Etc/GMT+7` - Etc/GMT+7 * `Etc/GMT+8` - Etc/GMT+8 * `Etc/GMT+9` - Etc/GMT+9 * `Etc/GMT-0` - Etc/GMT-0 * `Etc/GMT-1` - Etc/GMT-1 * `Etc/GMT-10` - Etc/GMT-10 * `Etc/GMT-11` - Etc/GMT-11 * `Etc/GMT-12` - Etc/GMT-12 * `Etc/GMT-13` - Etc/GMT-13 * `Etc/GMT-14` - Etc/GMT-14 * `Etc/GMT-2` - Etc/GMT-2 * `Etc/GMT-3` - Etc/GMT-3 * `Etc/GMT-4` - Etc/GMT-4 * `Etc/GMT-5` - Etc/GMT-5 * `Etc/GMT-6` - Etc/GMT-6 * `Etc/GMT-7` - Etc/GMT-7 * `Etc/GMT-8` - Etc/GMT-8 * `Etc/GMT-9` - Etc/GMT-9 * `Etc/GMT0` - Etc/GMT0 * `Etc/Greenwich` - Etc/Greenwich * `Etc/UCT` - Etc/UCT * `Etc/UTC` - Etc/UTC * `Etc/Universal` - Etc/Universal * `Etc/Zulu` - Etc/Zulu * `Europe/Amsterdam` - Europe/Amsterdam * `Europe/Andorra` - Europe/Andorra * `Europe/Astrakhan` - Europe/Astrakhan * `Europe/Athens` - Europe/Athens * `Europe/Belfast` - Europe/Belfast * `Europe/Belgrade` - Europe/Belgrade * `Europe/Berlin` - Europe/Berlin * `Europe/Bratislava` - Europe/Bratislava * `Europe/Brussels` - Europe/Brussels * `Europe/Bucharest` - Europe/Bucharest * `Europe/Budapest` - Europe/Budapest * `Europe/Busingen` - Europe/Busingen * `Europe/Chisinau` - Europe/Chisinau * `Europe/Copenhagen` - Europe/Copenhagen * `Europe/Dublin` - Europe/Dublin * `Europe/Gibraltar` - Europe/Gibraltar * `Europe/Guernsey` - Europe/Guernsey * `Europe/Helsinki` - Europe/Helsinki * `Europe/Isle_of_Man` - Europe/Isle_of_Man * `Europe/Istanbul` - Europe/Istanbul * `Europe/Jersey` - Europe/Jersey * `Europe/Kaliningrad` - Europe/Kaliningrad * `Europe/Kiev` - Europe/Kiev * `Europe/Kirov` - Europe/Kirov * `Europe/Kyiv` - Europe/Kyiv * `Europe/Lisbon` - Europe/Lisbon * `Europe/Ljubljana` - Europe/Ljubljana * `Europe/London` - Europe/London * `Europe/Luxembourg` - Europe/Luxembourg * `Europe/Madrid` - Europe/Madrid * `Europe/Malta` - Europe/Malta * `Europe/Mariehamn` - Europe/Mariehamn * `Europe/Minsk` - Europe/Minsk * `Europe/Monaco` - Europe/Monaco * `Europe/Moscow` - Europe/Moscow * `Europe/Nicosia` - Europe/Nicosia * `Europe/Oslo` - Europe/Oslo * `Europe/Paris` - Europe/Paris * `Europe/Podgorica` - Europe/Podgorica * `Europe/Prague` - Europe/Prague * `Europe/Riga` - Europe/Riga * `Europe/Rome` - Europe/Rome * `Europe/Samara` - Europe/Samara * `Europe/San_Marino` - Europe/San_Marino * `Europe/Sarajevo` - Europe/Sarajevo * `Europe/Saratov` - Europe/Saratov * `Europe/Simferopol` - Europe/Simferopol * `Europe/Skopje` - Europe/Skopje * `Europe/Sofia` - Europe/Sofia * `Europe/Stockholm` - Europe/Stockholm * `Europe/Tallinn` - Europe/Tallinn * `Europe/Tirane` - Europe/Tirane * `Europe/Tiraspol` - Europe/Tiraspol * `Europe/Ulyanovsk` - Europe/Ulyanovsk * `Europe/Uzhgorod` - Europe/Uzhgorod * `Europe/Vaduz` - Europe/Vaduz * `Europe/Vatican` - Europe/Vatican * `Europe/Vienna` - Europe/Vienna * `Europe/Vilnius` - Europe/Vilnius * `Europe/Volgograd` - Europe/Volgograd * `Europe/Warsaw` - Europe/Warsaw * `Europe/Zagreb` - Europe/Zagreb * `Europe/Zaporozhye` - Europe/Zaporozhye * `Europe/Zurich` - Europe/Zurich * `GB` - GB * `GB-Eire` - GB-Eire * `GMT` - GMT * `GMT+0` - GMT+0 * `GMT-0` - GMT-0 * `GMT0` - GMT0 * `Greenwich` - Greenwich * `HST` - HST * `Hongkong` - Hongkong * `Iceland` - Iceland * `Indian/Antananarivo` - Indian/Antananarivo * `Indian/Chagos` - Indian/Chagos * `Indian/Christmas` - Indian/Christmas * `Indian/Cocos` - Indian/Cocos * `Indian/Comoro` - Indian/Comoro * `Indian/Kerguelen` - Indian/Kerguelen * `Indian/Mahe` - Indian/Mahe * `Indian/Maldives` - Indian/Maldives * `Indian/Mauritius` - Indian/Mauritius * `Indian/Mayotte` - Indian/Mayotte * `Indian/Reunion` - Indian/Reunion * `Iran` - Iran * `Israel` - Israel * `Jamaica` - Jamaica * `Japan` - Japan * `Kwajalein` - Kwajalein * `Libya` - Libya * `MET` - MET * `MST` - MST * `MST7MDT` - MST7MDT * `Mexico/BajaNorte` - Mexico/BajaNorte * `Mexico/BajaSur` - Mexico/BajaSur * `Mexico/General` - Mexico/General * `NZ` - NZ * `NZ-CHAT` - NZ-CHAT * `Navajo` - Navajo * `PRC` - PRC * `PST8PDT` - PST8PDT * `Pacific/Apia` - Pacific/Apia * `Pacific/Auckland` - Pacific/Auckland * `Pacific/Bougainville` - Pacific/Bougainville * `Pacific/Chatham` - Pacific/Chatham * `Pacific/Chuuk` - Pacific/Chuuk * `Pacific/Easter` - Pacific/Easter * `Pacific/Efate` - Pacific/Efate * `Pacific/Enderbury` - Pacific/Enderbury * `Pacific/Fakaofo` - Pacific/Fakaofo * `Pacific/Fiji` - Pacific/Fiji * `Pacific/Funafuti` - Pacific/Funafuti * `Pacific/Galapagos` - Pacific/Galapagos * `Pacific/Gambier` - Pacific/Gambier * `Pacific/Guadalcanal` - Pacific/Guadalcanal * `Pacific/Guam` - Pacific/Guam * `Pacific/Honolulu` - Pacific/Honolulu * `Pacific/Johnston` - Pacific/Johnston * `Pacific/Kanton` - Pacific/Kanton * `Pacific/Kiritimati` - Pacific/Kiritimati * `Pacific/Kosrae` - Pacific/Kosrae * `Pacific/Kwajalein` - Pacific/Kwajalein * `Pacific/Majuro` - Pacific/Majuro * `Pacific/Marquesas` - Pacific/Marquesas * `Pacific/Midway` - Pacific/Midway * `Pacific/Nauru` - Pacific/Nauru * `Pacific/Niue` - Pacific/Niue * `Pacific/Norfolk` - Pacific/Norfolk * `Pacific/Noumea` - Pacific/Noumea * `Pacific/Pago_Pago` - Pacific/Pago_Pago * `Pacific/Palau` - Pacific/Palau * `Pacific/Pitcairn` - Pacific/Pitcairn * `Pacific/Pohnpei` - Pacific/Pohnpei * `Pacific/Ponape` - Pacific/Ponape * `Pacific/Port_Moresby` - Pacific/Port_Moresby * `Pacific/Rarotonga` - Pacific/Rarotonga * `Pacific/Saipan` - Pacific/Saipan * `Pacific/Samoa` - Pacific/Samoa * `Pacific/Tahiti` - Pacific/Tahiti * `Pacific/Tarawa` - Pacific/Tarawa * `Pacific/Tongatapu` - Pacific/Tongatapu * `Pacific/Truk` - Pacific/Truk * `Pacific/Wake` - Pacific/Wake * `Pacific/Wallis` - Pacific/Wallis * `Pacific/Yap` - Pacific/Yap * `Poland` - Poland * `Portugal` - Portugal * `ROC` - ROC * `ROK` - ROK * `Singapore` - Singapore * `Turkey` - Turkey * `UCT` - UCT * `US/Alaska` - US/Alaska * `US/Aleutian` - US/Aleutian * `US/Arizona` - US/Arizona * `US/Central` - US/Central * `US/East-Indiana` - US/East-Indiana * `US/Eastern` - US/Eastern * `US/Hawaii` - US/Hawaii * `US/Indiana-Starke` - US/Indiana-Starke * `US/Michigan` - US/Michigan * `US/Mountain` - US/Mountain * `US/Pacific` - US/Pacific * `US/Samoa` - US/Samoa * `UTC` - UTC * `Universal` - Universal * `W-SU` - W-SU * `WET` - WET * `Zulu` - Zulu' AutostartPriorityEnum: enum: - P0 - P1 - P2 - P3 - P4 type: string description: '* `P0` - P0 * `P1` - P1 * `P2` - P2 * `P3` - P3 * `P4` - P4' ScenePersonalisationBasic: type: object properties: scene: type: string maxLength: 200 dashboard: type: integer nullable: true required: - scene PatchedUser: type: object properties: date_joined: type: string format: date-time readOnly: true uuid: type: string format: uuid readOnly: true distinct_id: type: string readOnly: true nullable: true first_name: type: string maxLength: 150 last_name: type: string maxLength: 150 email: type: string format: email title: Email address maxLength: 254 pending_email: type: string format: email readOnly: true nullable: true title: Pending email address awaiting verification is_email_verified: type: boolean readOnly: true nullable: true notification_settings: type: object additionalProperties: true description: Map of notification preferences. Keys include `plugin_disabled`, `all_weekly_report_disabled`, `project_weekly_digest_disabled`, `error_tracking_weekly_digest_project_enabled`, `web_analytics_weekly_digest_project_enabled`, `organization_member_join_email_disabled`, `data_pipeline_error_threshold` (number between 0.0 and 1.0), and other per-topic switches. Values are either booleans, or (for per-project/per-resource keys) a map of IDs to booleans. Only the keys you send are updated — other preferences stay as-is. anonymize_data: type: boolean nullable: true description: Whether PostHog should anonymize events captured for this user when identified. allow_impersonation: type: boolean nullable: true toolbar_mode: nullable: true oneOf: - $ref: '#/components/schemas/ToolbarModeEnum' - $ref: '#/components/schemas/BlankEnum' - $ref: '#/components/schemas/NullEnum' has_password: type: boolean readOnly: true id: type: integer readOnly: true is_staff: type: boolean title: Staff status description: Designates whether the user can log into this admin site. is_impersonated: type: boolean nullable: true readOnly: true is_impersonated_until: type: string nullable: true readOnly: true is_impersonated_read_only: type: boolean nullable: true readOnly: true sensitive_session_expires_at: type: string nullable: true readOnly: true team: allOf: - $ref: '#/components/schemas/TeamBasic' readOnly: true organization: allOf: - $ref: '#/components/schemas/Organization' readOnly: true organizations: type: array items: $ref: '#/components/schemas/OrganizationBasic' readOnly: true set_current_organization: type: string writeOnly: true set_current_team: type: string writeOnly: true password: type: string writeOnly: true maxLength: 128 current_password: type: string writeOnly: true description: The user's current password. Required when changing `password` if the user already has a usable password set. events_column_config: {} is_2fa_enabled: type: boolean readOnly: true has_social_auth: type: boolean readOnly: true has_sso_enforcement: type: boolean readOnly: true has_seen_product_intro_for: nullable: true scene_personalisation: type: array items: $ref: '#/components/schemas/ScenePersonalisationBasic' readOnly: true theme_mode: nullable: true oneOf: - $ref: '#/components/schemas/ThemeModeEnum' - $ref: '#/components/schemas/BlankEnum' - $ref: '#/components/schemas/NullEnum' hedgehog_config: nullable: true allow_sidebar_suggestions: type: boolean nullable: true shortcut_position: nullable: true oneOf: - $ref: '#/components/schemas/ShortcutPositionEnum' - $ref: '#/components/schemas/BlankEnum' - $ref: '#/components/schemas/NullEnum' role_at_organization: $ref: '#/components/schemas/RoleAtOrganizationEnum' passkeys_enabled_for_2fa: type: boolean nullable: true description: Whether passkeys are enabled for 2FA authentication. Users can disable this to use only TOTP for 2FA while keeping passkeys for login. is_organization_first_user: type: boolean nullable: true readOnly: true pending_invites: type: array items: $ref: '#/components/schemas/PendingInvite' readOnly: true DefaultExperimentStatsMethodEnum: enum: - bayesian - frequentist type: string description: '* `bayesian` - Bayesian * `frequentist` - Frequentist' GitHubRepo: type: object properties: id: type: integer name: type: string full_name: type: string required: - full_name - id - name ToolbarModeEnum: enum: - disabled - toolbar type: string description: '* `disabled` - disabled * `toolbar` - toolbar' ShortcutPositionEnum: enum: - above - below - hidden type: string description: '* `above` - Above * `below` - Below * `hidden` - Hidden' UserGitHubIntegrationItem: type: object properties: id: type: string format: uuid description: PostHog UserIntegration row id. kind: type: string description: Integration kind; always `github` for this API. installation_id: type: string description: GitHub App installation id. repository_selection: type: string nullable: true description: Repository selection mode from GitHub (e.g. selected or all). account: allOf: - $ref: '#/components/schemas/UserGitHubAccount' nullable: true description: Installation account metadata from GitHub. uses_shared_installation: type: boolean description: True when this installation id matches a team-level GitHub integration on the active project. created_at: type: string format: date-time description: When this integration row was created. required: - created_at - id - installation_id - kind - uses_shared_installation PaginatedUserList: type: object required: - count - results properties: count: type: integer example: 123 next: type: string nullable: true format: uri example: http://api.example.org/accounts/?offset=400&limit=100 previous: type: string nullable: true format: uri example: http://api.example.org/accounts/?offset=200&limit=100 results: type: array items: $ref: '#/components/schemas/User' UserGitHubLinkStartRequest: type: object properties: team_id: type: integer nullable: true description: Optional team/project id (e.g. PostHog Code); web UI uses the session's current team. connect_from: type: string description: Optional client hint (e.g. posthog_code) for return routing after OAuth. OrganizationBasic: type: object description: 'Serializer for `Organization` model with minimal attributes to speeed up loading and transfer times. Also used for nested serializers.' properties: id: type: string format: uuid readOnly: true name: type: string maxLength: 64 slug: type: string maxLength: 48 pattern: ^[-a-zA-Z0-9_]+$ logo_media_id: type: string format: uuid nullable: true readOnly: true membership_level: allOf: - $ref: '#/components/schemas/EffectiveMembershipLevelEnum' nullable: true readOnly: true members_can_use_personal_api_keys: type: boolean is_active: type: boolean nullable: true title: Active description: Set this to 'No' to temporarily disable an organization. is_not_active_reason: type: string nullable: true title: De-activated reason description: (optional) reason for why the organization has been de-activated. This will be displayed to users on the web app. maxLength: 200 is_pending_deletion: type: boolean nullable: true description: Set to True when org deletion has been initiated. Blocks all UI access until the async task completes. required: - id - logo_media_id - membership_level - name - slug BlankEnum: enum: - '' UserGitHubIntegrationListResponse: type: object properties: results: type: array items: $ref: '#/components/schemas/UserGitHubIntegrationItem' description: GitHub personal integrations for the authenticated user. required: - results SignalUserAutonomyConfig: type: object properties: id: type: string format: uuid readOnly: true user: allOf: - $ref: '#/components/schemas/_User' readOnly: true autostart_priority: nullable: true oneOf: - $ref: '#/components/schemas/AutostartPriorityEnum' - $ref: '#/components/schemas/BlankEnum' - $ref: '#/components/schemas/NullEnum' created_at: type: string format: date-time readOnly: true updated_at: type: string format: date-time readOnly: true required: - created_at - id - updated_at - user ThemeModeEnum: enum: - light - dark - system type: string description: '* `light` - Light * `dark` - Dark * `system` - System' GitHubBranchesResponse: type: object properties: branches: type: array items: type: string description: List of branch names default_branch: type: string nullable: true description: The default branch of the repository has_more: type: boolean description: Whether more branches exist beyond the returned page required: - branches - has_more Organization: type: object properties: id: type: string format: uuid readOnly: true name: type: string maxLength: 64 slug: type: string readOnly: true pattern: ^[-a-zA-Z0-9_]+$ logo_media_id: type: string format: uuid nullable: true created_at: type: string format: date-time readOnly: true updated_at: type: string format: date-time readOnly: true membership_level: allOf: - $ref: '#/components/schemas/EffectiveMembershipLevelEnum' nullable: true readOnly: true plugins_access_level: allOf: - $ref: '#/components/schemas/PluginsAccessLevelEnum' readOnly: true teams: type: array items: type: object additionalProperties: true readOnly: true projects: type: array items: type: object additionalProperties: true readOnly: true available_product_features: type: array items: {} readOnly: true nullable: true is_member_join_email_enabled: type: boolean readOnly: true description: Legacy field; member-join emails are controlled per user in account notification settings. metadata: type: object additionalProperties: type: string readOnly: true customer_id: type: string readOnly: true nullable: true enforce_2fa: type: boolean nullable: true members_can_invite: type: boolean nullable: true members_can_use_personal_api_keys: type: boolean allow_publicly_shared_resources: type: boolean member_count: type: integer readOnly: true is_ai_data_processing_approved: type: boolean nullable: true default_experiment_stats_method: nullable: true description: 'Default statistical method for new experiments in this organization. * `bayesian` - Bayesian * `frequentist` - Frequentist' oneOf: - $ref: '#/components/schemas/DefaultExperimentStatsMethodEnum' - $ref: '#/components/schemas/BlankEnum' - $ref: '#/components/schemas/NullEnum' default_anonymize_ips: type: boolean description: Default setting for 'Discard client IP data' for new projects in this organization. default_role_id: type: string nullable: true description: ID of the role to automatically assign to new members joining the organization is_active: type: boolean readOnly: true nullable: true title: Active description: Set this to 'No' to temporarily disable an organization. is_not_active_reason: type: string readOnly: true nullable: true title: De-activated reason description: (optional) reason for why the organization has been de-activated. This will be displayed to users on the web app. is_pending_deletion: type: boolean readOnly: true nullable: true description: Set to True when org deletion has been initiated. Blocks all UI access until the async task completes. required: - available_product_features - created_at - customer_id - id - is_active - is_member_join_email_enabled - is_not_active_reason - is_pending_deletion - member_count - membership_level - metadata - name - plugins_access_level - projects - slug - teams - updated_at 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