AACFlow

PostHog

Продуктовая аналитика и управление функциями

Инструмент PostHog встраивает мощную продуктовую аналитику, управление feature-флагами, экспериментирование и анализ поведения пользователей прямо в ваши воркфлоу. Созданный для современных команд, он позволяет фиксировать, анализировать и действовать на основе пользовательских данных в реальном времени — помогая создавать лучшие продукты, понимать вовлечённость и увеличивать конверсии.

Инструмент PostHog позволяет:

  • Отслеживание и анализ событий: используйте операции posthog_capture_event и posthog_batch_events, чтобы записывать отдельные или массовые действия пользователей, просмотры страниц или пользовательские события для глубокой аналитики.
  • Исследование данных событий: получайте и просматривайте исторические или текущие события с помощью операции posthog_list_events для расширенного анализа.
  • Понимание пользователей: используйте операции posthog_list_persons, posthog_get_person и posthog_delete_person для управления профилями пользователей, получения детальной информации о них или удаления при необходимости.
  • Получение продуктовых инсайтов: визуализируйте пользовательские сценарии, использование функций и вовлечённость через операции posthog_list_insights, posthog_get_insight и posthog_create_insight.
  • Безопасный roll-out функций: включайте/выключайте функции и проводите A/B- или multivariate-тесты в масштабе с помощью операций posthog_list_feature_flags, posthog_get_feature_flag, posthog_create_feature_flag, posthog_update_feature_flag и posthog_delete_feature_flag.
  • Сегментация и таргетинг аудитории: создавайте, получайте и управляйте когортами с помощью posthog_list_cohorts, posthog_get_cohort и posthog_create_cohort.
  • Сбор прямой обратной связи: проектируйте, разворачивайте и анализируйте опросы через posthog_list_surveys, posthog_get_survey, posthog_create_survey и posthog_update_survey.
  • Мониторинг пользовательского опыта: получайте и анализируйте записи сессий через операции posthog_list_session_recordings и posthog_get_session_recording.
  • Командная совместная работа: организуйте дашборды (posthog_list_dashboards, posthog_get_dashboard), создавайте и аннотируйте инсайты и события, управляйте проектами и организациями внутри PostHog.

Хотите ли вы внедрить полноценную продуктовую аналитику, улучшить онбординг пользователей, доработать roadmap продукта или автоматизировать решения на основе реальных данных использования — инструмент PostHog даёт вашим агентам и воркфлоу расширенную аналитику и продуктовое экспериментирование на единой платформе.

Ищете настоящую продуктовую аналитику с упором на приватность, масштабируемость и open-source? PostHog используют быстрорастущие команды и крупные компании по всему миру.

Инструкции по использованию

Интегрируйте PostHog в ваш рабочий процесс. Отслеживать events, manage feature flags, analyze user behavior, run experiments, create surveys, и access session recordings.

Инструменты

posthog_capture_event

Зафиксируйте одно событие в PostHog. Use this to track user actions, page views, или пользовательские events.

Входные параметры

ПараметрТипОбязательныйОписание
projectApiKeystringДаPostHog Project API Key (public token for event ingestion)
regionstringНетPostHog region: us (default) or eu
eventstringДаИмя события для захвата (e.g., "page_view", "button_clicked")
distinctIdstringДаUnique identifier for the user or device (e.g., "user123", email, or device UUID)
propertiesstringНетJSON string of event properties (e.g., {"button_name": "signup", "page": "homepage"})
timestampstringНетISO 8601 timestamp for when the event occurred. Если не предоставлен, uses current time

Выходные данные

ПараметрТипОписание
statusstringStatus message indicating whether the event was captured successfully

posthog_batch_events

Capture multiple events at once in PostHog. Use this для bulk event ingestion to improve performance.

Входные параметры

ПараметрТипОбязательныйОписание
projectApiKeystringДаPostHog Project API Key (public token for event ingestion)
regionstringНетPostHog region: us (default) or eu
batchstringДаJSON array of events to capture. Each event should have: event, distinct_id, and optional properties, timestamp. Example: [{"event": "page_view", "distinct_id": "user123", "properties": {"page": "/"}}]

Выходные данные

ПараметрТипОписание
statusstringStatus message indicating whether the batch was captured successfully
events_processednumberNumber of events processed in the batch

posthog_list_persons

Список persons (users) in PostHog. Returns user profiles С помощьюir properties и distinct IDs.

Входные параметры

ПараметрТипОбязательныйОписание
personalApiKeystringДаPostHog Personal API Key (for authenticated API access)
regionstringНетPostHog region: us (default) or eu
projectIdstringДаPostHog Project ID (e.g., "12345" or project UUID)
limitnumberНетNumber of persons to return (default: 100, max: 100)
offsetnumberНетNumber of persons to skip for постраничная выборка (e.g., 0, 100, 200)
searchstringНетSearch persons by email, name, or distinct ID
distinctIdstringНетFilter by specific distinct_id

Выходные данные

ПараметрТипОписание
personsarrayList of persons С помощьюir properties and identifiers
idstringPerson ID
namestringPerson name
distinct_idsarrayAll distinct IDs associated with this person
created_atstringWhen the person was first seen
uuidstringPerson UUID
nextstringURL for the next page of results (if available)

posthog_get_person

Получить подробную информацию about a specific person in PostHog by their ID или UUID.

Входные параметры

ПараметрТипОбязательныйОписание
personalApiKeystringДаPostHog Personal API Key (for authenticated API access)
regionstringНетPostHog region: us (default) or eu
projectIdstringДаPostHog Project ID (e.g., "12345" or project UUID)
personIdstringДаPerson ID or UUID to retrieve (e.g., "01234567-89ab-cdef-0123-456789abcdef")

Выходные данные

ПараметрТипОписание
personobjectPerson details including properties and identifiers
idstringPerson ID
namestringPerson name
distinct_idsarrayAll distinct IDs associated with this person
created_atstringWhen the person was first seen
uuidstringPerson UUID

posthog_delete_person

Удалить person from PostHog. This will remove all associated events и data. Use с caution.

Входные параметры

ПараметрТипОбязательныйОписание
personalApiKeystringДаPostHog Personal API Key (for authenticated API access)
regionstringНетPostHog region: us (default) or eu
projectIdstringДаPostHog Project ID (e.g., "12345" or project UUID)
personIdstringДаPerson ID or UUID to delete (e.g., "01234567-89ab-cdef-0123-456789abcdef")

Выходные данные

ПараметрТипОписание
statusstringStatus message indicating whether the person was deleted successfully

posthog_запрос

Выполнить a HogQL запрос in PostHog. HogQL — это PostHog

Входные параметры

ПараметрТипОбязательныйОписание
personalApiKeystringДаPostHog Personal API Key (for authenticated API access)
regionstringНетPostHog region: us (default) or eu
projectIdstringДаPostHog Project ID (e.g., "12345" or project UUID)
querystringДаHogQL query to execute. Example: {"kind": "HogQLQuery", "query": "SELECT event, count() FROM events WHERE timestamp > now() - INTERVAL 1 DAY GROUP BY event"}
valuesstringНетOptional JSON string of parameter values for parameterized queries. Example: {"user_id": "123"}

Выходные данные

ПараметрТипОписание
resultsarrayQuery results as an array of rows
columnsarrayColumn names in the result set
typesarrayData types of columns in the result set
hogqlstringThe actual HogQL query that was executed
has_morebooleanПроизошла лиre are more results available

posthog_list_insights

Список всех insights in a PostHog project. Returns insight configurations, filters, и metadata.

Входные параметры

ПараметрТипОбязательныйОписание
apiKeystringДаPostHog Personal API Key
projectIdstringДаThe PostHog project ID (e.g., "12345" or project UUID)
regionstringНетPostHog cloud region: "us" or "eu" (default: "us")
limitnumberНетКоличество результатов для возврата per page (default: 100, e.g., 10, 50, 100)
offsetnumberНетКоличество результатов для пропуска for постраничная выборка (e.g., 0, 100, 200)

Выходные данные

ПараметрТипОписание
countnumberTotal number of insights in the project
nextstringURL for the next page of results
previousstringURL for the previous page of results
resultsarrayList of insights С помощьюir configurations and metadata
idnumberUnique identifier for the insight
namestringName of the insight
descriptionstringDescription of the insight
filtersobjectFilter configuration for the insight
queryobjectQuery configuration for the insight
created_atstringISO timestamp when insight was created
created_byobjectUser who created the insight
last_modified_atstringISO timestamp when insight was last modified
last_modified_byobjectUser who last modified the insight
savedbooleanПроизошла ли insight is saved
dashboardsarrayIDs of dashboards this insight appears on

posthog_get_insight

Получить a specific insight от ID from PostHog. Returns detailed insight configuration, filters, и metadata.

Входные параметры

ПараметрТипОбязательныйОписание
apiKeystringДаPostHog Personal API Key
projectIdstringДаThe PostHog project ID (e.g., "12345" or project UUID)
insightIdstringДаThe insight ID to retrieve (e.g., "42" or short ID like "abc123")
regionstringНетPostHog cloud region: "us" or "eu" (default: "us")

Выходные данные

ПараметрТипОписание
idnumberUnique identifier for the insight
namestringName of the insight
descriptionstringDescription of the insight
filtersobjectFilter configuration for the insight
queryobjectQuery configuration for the insight
created_atstringISO timestamp when insight was created
created_byobjectUser who created the insight
last_modified_atstringISO timestamp when insight was last modified
last_modified_byobjectUser who last modified the insight
savedbooleanПроизошла ли insight is saved
dashboardsarrayIDs of dashboards this insight appears on
tagsarrayTags associated С помощью insight
favoritedbooleanПроизошла ли insight is favorited

posthog_create_insight

Создать новый insight in PostHog. Требуется insight name и configuration filters или запрос.

Входные параметры

ПараметрТипОбязательныйОписание
apiKeystringДаPostHog Personal API Key
projectIdstringДаThe PostHog project ID (e.g., "12345" or project UUID)
regionstringНетPostHog cloud region: "us" or "eu" (default: "us")
namestringНетName for the insight (optional - PostHog will generate a derived name if not provided)
descriptionstringНетDescription of the insight
filtersstringНетJSON string of filter configuration for the insight
querystringНетJSON string of query configuration for the insight
dashboardsstringНетComma-separated list of dashboard IDs to add this insight to
tagsstringНетComma-separated list of tags for the insight

Выходные данные

ПараметрТипОписание
idnumberUnique identifier for the created insight
namestringName of the insight
descriptionstringDescription of the insight
filtersobjectFilter configuration for the insight
queryobjectQuery configuration for the insight
created_atstringISO timestamp when insight was created
created_byobjectUser who created the insight
last_modified_atstringISO timestamp when insight was last modified
savedbooleanПроизошла ли insight is saved
dashboardsarrayIDs of dashboards this insight appears on
tagsarrayTags associated С помощью insight

posthog_list_dashboards

Список всех dashboards in a PostHog project. Returns dashboard configurations, tiles, и metadata.

Входные параметры

ПараметрТипОбязательныйОписание
apiKeystringДаPostHog Personal API Key
projectIdstringДаThe PostHog project ID (e.g., "12345" or project UUID)
regionstringНетPostHog cloud region: "us" or "eu" (default: "us")
limitnumberНетКоличество результатов для возврата per page (default: 100, e.g., 10, 50, 100)
offsetnumberНетКоличество результатов для пропуска for постраничная выборка (e.g., 0, 100, 200)

Выходные данные

ПараметрТипОписание
countnumberTotal number of dashboards in the project
nextstringURL for the next page of results
previousstringURL for the previous page of results
resultsarrayList of dashboards С помощьюir configurations and metadata
idnumberUnique identifier for the dashboard
namestringName of the dashboard
descriptionstringDescription of the dashboard
pinnedbooleanПроизошла ли dashboard is pinned
created_atstringISO timestamp when dashboard was created
created_byobjectUser who created the dashboard
last_modified_atstringISO timestamp when dashboard was last modified
last_modified_byobjectUser who last modified the dashboard
tilesarrayTiles/widgets on the dashboard
filtersobjectGlobal filters for the dashboard
tagsarrayTags associated С помощью dashboard

posthog_get_dashboard

Получить a specific dashboard от ID from PostHog. Returns detailed dashboard configuration, tiles, и metadata.

Входные параметры

ПараметрТипОбязательныйОписание
apiKeystringДаPostHog Personal API Key
projectIdstringДаThe PostHog project ID (e.g., "12345" or project UUID)
dashboardIdstringДаThe dashboard ID to retrieve (e.g., "42")
regionstringНетPostHog cloud region: "us" or "eu" (default: "us")

Выходные данные

ПараметрТипОписание
idnumberUnique identifier for the dashboard
namestringName of the dashboard
descriptionstringDescription of the dashboard
pinnedbooleanПроизошла ли dashboard is pinned
created_atstringISO timestamp when dashboard was created
created_byobjectUser who created the dashboard
last_modified_atstringISO timestamp when dashboard was last modified
last_modified_byobjectUser who last modified the dashboard
tilesarrayTiles/widgets on the dashboard С помощьюir configurations
filtersobjectGlobal filters applied to the dashboard
tagsarrayTags associated С помощью dashboard
restriction_levelnumberAccess restriction level for the dashboard

posthog_list_actions

Список всех actions in a PostHog project. Returns action definitions, steps, и metadata.

Входные параметры

ПараметрТипОбязательныйОписание
apiKeystringДаPostHog Personal API Key
projectIdstringДаThe PostHog project ID (e.g., "12345" or project UUID)
regionstringНетPostHog cloud region: "us" or "eu" (default: "us")
limitnumberНетКоличество результатов для возврата per page (default: 100, e.g., 10, 50, 100)
offsetnumberНетКоличество результатов для пропуска for постраничная выборка (e.g., 0, 100, 200)

Выходные данные

ПараметрТипОписание
countnumberTotal number of actions in the project
nextstringURL for the next page of results
previousstringURL for the previous page of results
resultsarrayList of actions С помощьюir definitions and metadata
idnumberUnique identifier for the action
namestringName of the action
descriptionstringDescription of the action
tagsarrayTags associated С помощью action
post_to_slackbooleanWhether to post this action to Slack
slack_message_formatstringFormat string for Slack messages
stepsarraySteps that define the action
created_atstringISO timestamp when action was created
created_byobjectUser who created the action
deletedbooleanПроизошла ли action is deleted
is_calculatingbooleanПроизошла ли action is being calculated
last_calculated_atstringISO timestamp of last calculation

posthog_list_cohorts

Список всех cohorts in a PostHog project. Returns cohort definitions, filters, и user counts.

Входные параметры

ПараметрТипОбязательныйОписание
apiKeystringДаPostHog Personal API Key
projectIdstringДаThe PostHog project ID (e.g., "12345" or project UUID)
regionstringНетPostHog cloud region: "us" or "eu" (default: "us")
limitnumberНетКоличество результатов для возврата per page (default: 100, e.g., 10, 50, 100)
offsetnumberНетКоличество результатов для пропуска for постраничная выборка (e.g., 0, 100, 200)

Выходные данные

ПараметрТипОписание
countnumberTotal number of cohorts in the project
nextstringURL for the next page of results
previousstringURL for the previous page of results
resultsarrayList of cohorts С помощьюir definitions and metadata
idnumberUnique identifier for the cohort
namestringName of the cohort
descriptionstringDescription of the cohort
groupsarrayGroups that define the cohort
deletedbooleanПроизошла ли cohort is deleted
filtersobjectFilter configuration for the cohort
queryobjectQuery configuration for the cohort
created_atstringISO timestamp when cohort was created
created_byobjectUser who created the cohort
is_calculatingbooleanПроизошла ли cohort is being calculated
last_calculationstringISO timestamp of last calculation
errors_calculatingnumberNumber of errors during calculation
countnumberNumber of users in the cohort
is_staticbooleanПроизошла ли cohort is static

posthog_get_cohort

Получить a specific cohort от ID from PostHog. Returns detailed cohort definition, filters, и user count.

Входные параметры

ПараметрТипОбязательныйОписание
apiKeystringДаPostHog Personal API Key
projectIdstringДаThe PostHog project ID (e.g., "12345" or project UUID)
cohortIdstringДаThe cohort ID to retrieve (e.g., "42")
regionstringНетPostHog cloud region: "us" or "eu" (default: "us")

Выходные данные

ПараметрТипОписание
idnumberUnique identifier for the cohort
namestringName of the cohort
descriptionstringDescription of the cohort
groupsarrayGroups that define the cohort
deletedbooleanПроизошла ли cohort is deleted
filtersobjectFilter configuration for the cohort
queryobjectQuery configuration for the cohort
created_atstringISO timestamp when cohort was created
created_byobjectUser who created the cohort
is_calculatingbooleanПроизошла ли cohort is being calculated
last_calculationstringISO timestamp of last calculation
errors_calculatingnumberNumber of errors during calculation
countnumberNumber of users in the cohort
is_staticbooleanПроизошла ли cohort is static
versionnumberVersion number of the cohort

posthog_create_cohort

Создать новый cohort in PostHog. Требуется cohort name и filter или запрос configuration.

Входные параметры

ПараметрТипОбязательныйОписание
apiKeystringДаPostHog Personal API Key
projectIdstringДаThe PostHog project ID (e.g., "12345" or project UUID)
regionstringНетPostHog cloud region: "us" or "eu" (default: "us")
namestringНетName for the cohort (optional - PostHog will use "Untitled cohort" if not provided)
descriptionstringНетDescription of the cohort
filtersstringНетJSON string of filter configuration for the cohort
querystringНетJSON string of query configuration for the cohort
is_staticbooleanНетПроизошла ли cohort is static (default: false)
groupsstringНетJSON string of groups that define the cohort

Выходные данные

ПараметрТипОписание
idnumberUnique identifier for the created cohort
namestringName of the cohort
descriptionstringDescription of the cohort
groupsarrayGroups that define the cohort
deletedbooleanПроизошла ли cohort is deleted
filtersobjectFilter configuration for the cohort
queryobjectQuery configuration for the cohort
created_atstringISO timestamp when cohort was created
created_byobjectUser who created the cohort
is_calculatingbooleanПроизошла ли cohort is being calculated
countnumberNumber of users in the cohort
is_staticbooleanПроизошла ли cohort is static
versionnumberVersion number of the cohort

posthog_list_annotations

Список всех annotations in a PostHog project. Returns annotation content, timestamps, и associated insights.

Входные параметры

ПараметрТипОбязательныйОписание
apiKeystringДаPostHog Personal API Key
projectIdstringДаThe PostHog project ID (e.g., "12345" or project UUID)
regionstringНетPostHog cloud region: "us" or "eu" (default: "us")
limitnumberНетКоличество результатов для возврата per page (default: 100, e.g., 10, 50, 100)
offsetnumberНетКоличество результатов для пропуска for постраничная выборка (e.g., 0, 100, 200)

Выходные данные

ПараметрТипОписание
countnumberTotal number of annotations in the project
nextstringURL for the next page of results
previousstringURL for the previous page of results
resultsarrayList of annotations С помощьюir content and metadata
idnumberUnique identifier for the annotation
contentstringContent/text of the annotation
date_markerstringISO timestamp marking when the annotation applies
created_atstringISO timestamp when annotation was created
updated_atstringISO timestamp when annotation was last updated
created_byobjectUser who created the annotation
dashboard_itemnumberID of dashboard item this annotation is attached to
insight_short_idstringShort ID of the insight this annotation is attached to
insight_namestringName of the insight this annotation is attached to
scopestringScope of the annotation (project or dashboard)
deletedbooleanПроизошла ли annotation is deleted

posthog_create_annotation

Создать новый annotation in PostHog. Mark important events on your graphs с date и description.

Входные параметры

ПараметрТипОбязательныйОписание
apiKeystringДаPostHog Personal API Key
projectIdstringДаThe PostHog project ID (e.g., "12345" or project UUID)
regionstringНетPostHog cloud region: "us" or "eu" (default: "us")
contentstringДаContent/text of the annotation
date_markerstringДаISO timestamp marking when the annotation applies (e.g., "2024-01-15T10:00:00Z")
scopestringНетScope of the annotation: "project" or "dashboard_item" (default: "project")
dashboard_itemstringНетID of dashboard item to attach this annotation to
insight_short_idstringНетShort ID of the insight to attach this annotation to

Выходные данные

ПараметрТипОписание
idnumberUnique identifier for the created annotation
contentstringContent/text of the annotation
date_markerstringISO timestamp marking when the annotation applies
created_atstringISO timestamp when annotation was created
updated_atstringISO timestamp when annotation was last updated
created_byobjectUser who created the annotation
dashboard_itemnumberID of dashboard item this annotation is attached to
insight_short_idstringShort ID of the insight this annotation is attached to
insight_namestringName of the insight this annotation is attached to
scopestringScope of the annotation (project or dashboard_item)
deletedbooleanПроизошла ли annotation is deleted

posthog_list_feature_flags

Список всех feature flags in a PostHog project

Входные параметры

ПараметрТипОбязательныйОписание
projectIdstringДаThe PostHog project ID (e.g., "12345" or project UUID)
regionstringДаPostHog cloud region: us or eu
apiKeystringДаPostHog Personal API Key
limitnumberНетКоличество результатов для возврата (e.g., 10, 50, 100)
offsetnumberНетКоличество результатов для пропуска for постраничная выборка (e.g., 0, 100, 200)

Выходные данные

ПараметрТипОписание
resultsarrayList of feature flags
idnumberFeature flag ID
namestringFeature flag name
keystringFeature flag key
filtersobjectFeature flag filters
deletedbooleanПроизошла ли flag is deleted
activebooleanПроизошла ли flag is active
created_atstringCreation timestamp
created_byobjectCreator information
is_simple_flagbooleanПроизошла ли эта is a simple flag
rollout_percentagenumberRollout percentage (if applicable)
ensure_experience_continuitybooleanWhether to ensure experience continuity
countnumberTotal number of feature flags
nextstringURL to next page of results
previousstringURL to previous page of results

posthog_get_feature_flag

Получить details of a specific feature flag

Входные параметры

ПараметрТипОбязательныйОписание
projectIdstringДаThe PostHog project ID (e.g., "12345" or project UUID)
flagIdstringДаThe feature flag ID (e.g., "42")
regionstringДаPostHog cloud region: us or eu
apiKeystringДаPostHog Personal API Key

Выходные данные

ПараметрТипОписание
flagobjectFeature flag details
idnumberFeature flag ID
namestringFeature flag name
keystringFeature flag key
filtersobjectFeature flag filters
deletedbooleanПроизошла ли flag is deleted
activebooleanПроизошла ли flag is active
created_atstringCreation timestamp
created_byobjectCreator information
is_simple_flagbooleanПроизошла ли эта is a simple flag
rollout_percentagenumberRollout percentage (if applicable)
ensure_experience_continuitybooleanWhether to ensure experience continuity
usage_dashboardnumberUsage dashboard ID
has_enriched_analyticsbooleanWhether enriched analytics are enabled

posthog_create_feature_flag

Создать новый feature flag in PostHog

Входные параметры

ПараметрТипОбязательныйОписание
projectIdstringДаThe PostHog project ID (e.g., "12345" or project UUID)
regionstringДаPostHog cloud region: us or eu
apiKeystringДаPostHog Personal API Key
namestringНетFeature flag name (optional - can be empty)
keystringДаFeature flag key (unique identifier)
filtersstringНетFeature flag filters as JSON string
activebooleanНетПроизошла ли flag is active (default: true)
ensureExperienceContinuitybooleanНетWhether to ensure experience continuity (default: false)
rolloutPercentagenumberНетRollout percentage (0-100)

Выходные данные

ПараметрТипОписание
flagobjectCreated feature flag
idnumberFeature flag ID
namestringFeature flag name
keystringFeature flag key
filtersobjectFeature flag filters
deletedbooleanПроизошла ли flag is deleted
activebooleanПроизошла ли flag is active
created_atstringCreation timestamp
created_byobjectCreator information
is_simple_flagbooleanПроизошла ли эта is a simple flag
rollout_percentagenumberRollout percentage (if applicable)
ensure_experience_continuitybooleanWhether to ensure experience continuity

posthog_update_feature_flag

Обновитьn existing feature flag in PostHog

Входные параметры

ПараметрТипОбязательныйОписание
projectIdstringДаThe PostHog project ID (e.g., "12345" or project UUID)
flagIdstringДаThe feature flag ID (e.g., "42")
regionstringДаPostHog cloud region: us or eu
apiKeystringДаPostHog Personal API Key
namestringНетFeature flag name
keystringНетFeature flag key (unique identifier)
filtersstringНетFeature flag filters as JSON string
activebooleanНетПроизошла ли flag is active
ensureExperienceContinuitybooleanНетWhether to ensure experience continuity
rolloutPercentagenumberНетRollout percentage (0-100)

Выходные данные

ПараметрТипОписание
flagobjectUpdated feature flag
idnumberFeature flag ID
namestringFeature flag name
keystringFeature flag key
filtersobjectFeature flag filters
deletedbooleanПроизошла ли flag is deleted
activebooleanПроизошла ли flag is active
created_atstringCreation timestamp
created_byobjectCreator information
is_simple_flagbooleanПроизошла ли эта is a simple flag
rollout_percentagenumberRollout percentage (if applicable)
ensure_experience_continuitybooleanWhether to ensure experience continuity

posthog_delete_feature_flag

Удалить feature flag from PostHog

Входные параметры

ПараметрТипОбязательныйОписание
projectIdstringДаThe PostHog project ID (e.g., "12345" or project UUID)
flagIdstringДаThe feature flag ID to delete (e.g., "42")
regionstringДаPostHog cloud region: us or eu
apiKeystringДаPostHog Personal API Key

Выходные данные

ПараметрТипОписание
successbooleanПроизошла ли deletion was successful
messagestringConfirmation message

posthog_evaluate_flags

Evaluate feature flags для a specific user или group. This — это public endpoint that uses the project API ключ.

Входные параметры

ПараметрТипОбязательныйОписание
regionstringДаPostHog cloud region: us or eu
projectApiKeystringДаPostHog Project API Key (not personal API key)
distinctIdstringДаThe distinct ID of the user to evaluate flags for (e.g., "user123" or email)
groupsstringНетGroups as JSON string (e.g., {"company": "company_id_in_your_db"})
personPropertiesstringНетPerson properties as JSON string
groupPropertiesstringНетGroup properties as JSON string

Выходные данные

ПараметрТипОписание
feature_flagsobjectFeature flag evaluations (key-value pairs where values are boolean or string variants)
feature_flag_payloadsobjectAdditional payloads attached to feature flags
errors_while_computing_flagsbooleanПроизошла лиre were errors while computing flags

posthog_list_experiments

Список всех experiments in a PostHog project

Входные параметры

ПараметрТипОбязательныйОписание
projectIdstringДаThe PostHog project ID (e.g., "12345" or project UUID)
regionstringДаPostHog cloud region: us or eu
apiKeystringДаPostHog Personal API Key
limitnumberНетКоличество результатов для возврата (e.g., 10, 50, 100)
offsetnumberНетКоличество результатов для пропуска for постраничная выборка (e.g., 0, 100, 200)

Выходные данные

ПараметрТипОписание
resultsarrayList of experiments
idnumberExperiment ID
namestringExperiment name
descriptionstringExperiment description
feature_flag_keystringAssociated feature flag key
feature_flagobjectFeature flag details
parametersobjectExperiment parameters
filtersobjectExperiment filters
variantsobjectExperiment variants
start_datestringStart date
end_datestringEnd date
created_atstringCreation timestamp
created_byobjectCreator information
archivedbooleanПроизошла ли experiment is archived
countnumberTotal number of experiments
nextstringURL to next page of results
previousstringURL to previous page of results

posthog_get_experiment

Получить details of a specific experiment

Входные параметры

ПараметрТипОбязательныйОписание
projectIdstringДаThe PostHog project ID (e.g., "12345" or project UUID)
experimentIdstringДаThe experiment ID (e.g., "42")
regionstringДаPostHog cloud region: us or eu
apiKeystringДаPostHog Personal API Key

Выходные данные

ПараметрТипОписание
experimentobjectExperiment details
idnumberExperiment ID
namestringExperiment name
descriptionstringExperiment description
feature_flag_keystringAssociated feature flag key
feature_flagobjectFeature flag details
parametersobjectExperiment parameters
filtersobjectExperiment filters
variantsobjectExperiment variants
start_datestringStart date
end_datestringEnd date
created_atstringCreation timestamp
created_byobjectCreator information
archivedbooleanПроизошла ли experiment is archived
metricsarrayPrimary metrics
metrics_secondaryarraySecondary metrics

posthog_create_experiment

Создать новый experiment in PostHog

Входные параметры

ПараметрТипОбязательныйОписание
projectIdstringДаThe PostHog project ID (e.g., "12345" or project UUID)
regionstringДаPostHog cloud region: us or eu
apiKeystringДаPostHog Personal API Key
namestringНетExperiment name (optional)
descriptionstringНетExperiment description
featureFlagKeystringДаFeature flag key to use for the experiment
parametersstringНетExperiment parameters as JSON string
filtersstringНетExperiment filters as JSON string
variantsstringНетExperiment variants as JSON string
startDatestringНетExperiment start date (ISO format)
endDatestringНетExperiment end date (ISO format)

Выходные данные

ПараметрТипОписание
experimentobjectCreated experiment
idnumberExperiment ID
namestringExperiment name
descriptionstringExperiment description
feature_flag_keystringAssociated feature flag key
feature_flagobjectFeature flag details
parametersobjectExperiment parameters
filtersobjectExperiment filters
variantsobjectExperiment variants
start_datestringStart date
end_datestringEnd date
created_atstringCreation timestamp
created_byobjectCreator information
archivedbooleanПроизошла ли experiment is archived

posthog_list_surveys

Список всех surveys in a PostHog project. Surveys allow you to collect feedback from users.

Входные параметры

ПараметрТипОбязательныйОписание
apiKeystringДаPostHog Personal API Key
projectIdstringДаPostHog Project ID (e.g., "12345" or project UUID)
regionstringНетPostHog cloud region: us or eu (default: us)
limitnumberНетКоличество результатов для возврата (default: 100, e.g., 10, 50, 100)
offsetnumberНетКоличество результатов для пропуска for постраничная выборка (e.g., 0, 100, 200)

Выходные данные

ПараметрТипОписание
surveysarrayList of surveys in the project
idstringSurvey ID
namestringSurvey name
descriptionstringSurvey description
typestringSurvey type (popover or api)
questionsarraySurvey questions
created_atstringCreation timestamp
start_datestringSurvey start date
end_datestringSurvey end date
archivedbooleanWhether survey is archived
countnumberTotal number of surveys
nextstringURL for next page of results
previousstringURL for previous page of results

posthog_get_survey

Получить details of a specific survey in PostHog от ID.

Входные параметры

ПараметрТипОбязательныйОписание
apiKeystringДаPostHog Personal API Key
projectIdstringДаPostHog Project ID (e.g., "12345" or project UUID)
surveyIdstringДаSurvey ID to retrieve (e.g., "01234567-89ab-cdef-0123-456789abcdef")
regionstringНетPostHog cloud region: us or eu (default: us)

Выходные данные

ПараметрТипОписание
surveyobjectSurvey details
idstringSurvey ID
namestringSurvey name
descriptionstringSurvey description
typestringSurvey type (popover or api)
questionsarraySurvey questions
appearanceobjectSurvey appearance configuration
conditionsobjectSurvey display conditions
created_atstringCreation timestamp
created_byobjectCreator information
start_datestringSurvey start date
end_datestringSurvey end date
archivedbooleanWhether survey is archived
responses_limitnumberMaximum number of responses

posthog_create_survey

Создать новый survey in PostHog. Supports question types: Basic (open), Link, Rating, и Multiple Choice.

Входные параметры

ПараметрТипОбязательныйОписание
apiKeystringДаPostHog Personal API Key
projectIdstringДаPostHog Project ID (e.g., "12345" or project UUID)
regionstringНетPostHog cloud region: us or eu (default: us)
namestringНетSurvey name (optional)
descriptionstringНетSurvey description
typestringНетSurvey type: popover (in-app) or api (custom implementation) (default: popover)
questionsstringДаJSON string of survey questions array. Each question must have type (open/link/rating/multiple_choice) and question text. Rating questions can have scale (1-10), lowerBoundLabel, upperBoundLabel. Multiple choice questions need choices array. Link questions can have buttonText.
startDatestringНетSurvey start date in ISO 8601 format
endDatestringНетSurvey end date in ISO 8601 format
appearancestringНетJSON string of appearance configuration (colors, position, etc.)
conditionsstringНетJSON string of display conditions (URL matching, etc.)
targetingFlagFiltersstringНетJSON string of feature flag filters for targeting
linkedFlagIdstringНетFeature flag ID to link to this survey
responsesLimitnumberНетMaximum number of responses to collect

Выходные данные

ПараметрТипОписание
surveyobjectCreated survey details
idstringSurvey ID
namestringSurvey name
descriptionstringSurvey description
typestringSurvey type (popover or api)
questionsarraySurvey questions
created_atstringCreation timestamp
start_datestringSurvey start date
end_datestringSurvey end date

posthog_update_survey

Обновитьn existing survey in PostHog. Can modify questions, appearance, conditions, и other settings.

Входные параметры

ПараметрТипОбязательныйОписание
apiKeystringДаPostHog Personal API Key
projectIdstringДаPostHog Project ID (e.g., "12345" or project UUID)
surveyIdstringДаSurvey ID to update (e.g., "01234567-89ab-cdef-0123-456789abcdef")
regionstringНетPostHog cloud region: us or eu (default: us)
namestringНетSurvey name
descriptionstringНетSurvey description
typestringНетSurvey type: popover or api
questionsstringНетJSON string of survey questions array. Each question must have type (open/link/rating/multiple_choice) and question text.
startDatestringНетSurvey start date in ISO 8601 format
endDatestringНетSurvey end date in ISO 8601 format
appearancestringНетJSON string of appearance configuration (colors, position, etc.)
conditionsstringНетJSON string of display conditions (URL matching, etc.)
targetingFlagFiltersstringНетJSON string of feature flag filters for targeting
linkedFlagIdstringНетFeature flag ID to link to this survey
responsesLimitnumberНетMaximum number of responses to collect
archivedbooleanНетArchive or unarchive the survey

Выходные данные

ПараметрТипОписание
surveyobjectUpdated survey details
idstringSurvey ID
namestringSurvey name
descriptionstringSurvey description
typestringSurvey type (popover or api)
questionsarraySurvey questions
created_atstringCreation timestamp
start_datestringSurvey start date
end_datestringSurvey end date
archivedbooleanWhether survey is archived

posthog_list_session_recordings

Список session recordings in a PostHog project. Session recordings capture user interactions с your application.

Входные параметры

ПараметрТипОбязательныйОписание
apiKeystringДаPostHog Personal API Key
projectIdstringДаPostHog Project ID (e.g., "12345" or project UUID)
regionstringНетPostHog cloud region: us or eu (default: us)
limitnumberНетКоличество результатов для возврата (default: 50, e.g., 10, 25, 50)
offsetnumberНетКоличество результатов для пропуска for постраничная выборка (e.g., 0, 50, 100)

Выходные данные

ПараметрТипОписание
recordingsarrayList of session recordings
idstringRecording ID
distinct_idstringUser distinct ID
viewedbooleanWhether recording has been viewed
recording_durationnumberRecording duration in seconds
active_secondsnumberActive time in seconds
inactive_secondsnumberInactive time in seconds
start_timestringRecording start timestamp
end_timestringRecording end timestamp
click_countnumberNumber of clicks
keypress_countnumberNumber of keypresses
console_log_countnumberNumber of console logs
console_warn_countnumberNumber of console warnings
console_error_countnumberNumber of console errors
personobjectPerson information
countnumberTotal number of recordings
nextstringURL for next page of results
previousstringURL for previous page of results

posthog_get_session_recording

Получить details of a specific session recording in PostHog от ID.

Входные параметры

ПараметрТипОбязательныйОписание
apiKeystringДаPostHog Personal API Key
projectIdstringДаPostHog Project ID (e.g., "12345" or project UUID)
recordingIdstringДаSession recording ID to retrieve (e.g., "01234567-89ab-cdef-0123-456789abcdef")
regionstringНетPostHog cloud region: us or eu (default: us)

Выходные данные

ПараметрТипОписание
recordingobjectSession recording details
idstringRecording ID
distinct_idstringUser distinct ID
viewedbooleanWhether recording has been viewed
recording_durationnumberRecording duration in seconds
active_secondsnumberActive time in seconds
inactive_secondsnumberInactive time in seconds
start_timestringRecording start timestamp
end_timestringRecording end timestamp
click_countnumberNumber of clicks
keypress_countnumberNumber of keypresses
console_log_countnumberNumber of console logs
console_warn_countnumberNumber of console warnings
console_error_countnumberNumber of console errors
start_urlstringStarting URL of the recording
personobjectPerson information
matching_eventsarrayEvents that occurred during recording

posthog_list_recording_playlists

Список session recording playlists in a PostHog project. Playlists allow you to organize и curate session recordings.

Входные параметры

ПараметрТипОбязательныйОписание
apiKeystringДаPostHog Personal API Key
projectIdstringДаPostHog Project ID (e.g., "12345" or project UUID)
regionstringНетPostHog cloud region: us or eu (default: us)
limitnumberНетКоличество результатов для возврата (default: 100, e.g., 10, 50, 100)
offsetnumberНетКоличество результатов для пропуска for постраничная выборка (e.g., 0, 100, 200)

Выходные данные

ПараметрТипОписание
playlistsarrayList of session recording playlists
idstringPlaylist ID
short_idstringPlaylist short ID
namestringPlaylist name
descriptionstringPlaylist description
created_atstringCreation timestamp
created_byobjectCreator information
deletedbooleanWhether playlist is deleted
filtersobjectPlaylist filters
last_modified_atstringLast modification timestamp
last_modified_byobjectLast modifier information
derived_namestringAuto-generated name from filters
countnumberTotal number of playlists
nextstringURL for next page of results
previousstringURL for previous page of results

posthog_list_event_definitions

Список всех event definitions in a PostHog project. Event definitions represent tracked events с metadata like descriptions, tags, и usage statistics.

Входные параметры

ПараметрТипОбязательныйОписание
projectIdstringДаPostHog Project ID (e.g., "12345" or project UUID)
regionstringДаPostHog cloud region: us or eu
apiKeystringДаPostHog Personal API Key
limitnumberНетКоличество результатов для возврата per page (default: 100, e.g., 10, 50, 100)
offsetnumberНетThe initial index from which to return results (e.g., 0, 100, 200)
searchstringНетSearch term to filter event definitions by name

Выходные данные

ПараметрТипОписание
countnumberTotal number of event definitions
nextstringURL for the next page of results
previousstringURL for the previous page of results
resultsarrayList of event definitions
idstringUnique identifier for the event definition
namestringEvent name
descriptionstringEvent description
tagsarrayTags associated С помощью event
volume_30_daynumberNumber of events received in the last 30 days
query_usage_30_daynumberNumber of times this event was queried in the last 30 days
created_atstringISO timestamp when the event was created
last_seen_atstringISO timestamp when the event was last seen
updated_atstringISO timestamp when the event was updated
updated_byobjectUser who last updated the event

posthog_get_event_definition

Получить details of a specific event definition in PostHog. Returns comprehensive information about the event including metadata, usage statistics, и verification status.

Входные параметры

ПараметрТипОбязательныйОписание
projectIdstringДаPostHog Project ID (e.g., "12345" or project UUID)
eventDefinitionIdstringДаEvent Definition ID to retrieve
regionstringДаPostHog cloud region: us or eu
apiKeystringДаPostHog Personal API Key

Выходные данные

ПараметрТипОписание
idstringUnique identifier for the event definition
namestringEvent name
descriptionstringEvent description
tagsarrayTags associated С помощью event
volume_30_daynumberNumber of events received in the last 30 days
query_usage_30_daynumberNumber of times this event was queried in the last 30 days
created_atstringISO timestamp when the event was created
last_seen_atstringISO timestamp when the event was last seen
updated_atstringISO timestamp when the event was updated
updated_byobjectUser who last updated the event
verifiedbooleanПроизошла ли event has been verified
verified_atstringISO timestamp when the event was verified
verified_bystringUser who verified the event

posthog_update_event_definition

Обновитьn event definition in PostHog. Can modify description, tags, и verification status to maintain clean event schemas.

Входные параметры

ПараметрТипОбязательныйОписание
projectIdstringДаPostHog Project ID (e.g., "12345" or project UUID)
eventDefinitionIdstringДаEvent Definition ID to update
regionstringДаPostHog cloud region: us or eu
apiKeystringДаPostHog Personal API Key
descriptionstringНетUpdated description for the event
tagsstringНетComma-separated list of tags to associate С помощью event
verifiedbooleanНетWhether to mark the event as verified

Выходные данные

ПараметрТипОписание
idstringUnique identifier for the event definition
namestringEvent name
descriptionstringUpdated event description
tagsarrayUpdated tags associated С помощью event
volume_30_daynumberNumber of events received in the last 30 days
query_usage_30_daynumberNumber of times this event was queried in the last 30 days
created_atstringISO timestamp when the event was created
last_seen_atstringISO timestamp when the event was last seen
updated_atstringISO timestamp when the event was updated
updated_byobjectUser who last updated the event
verifiedbooleanПроизошла ли event has been verified
verified_atstringISO timestamp when the event was verified
verified_bystringUser who verified the event

posthog_list_property_definitions

Список всех property definitions in a PostHog project. Property definitions represent tracked properties с metadata like descriptions, tags, types, и usage statistics.

Входные параметры

ПараметрТипОбязательныйОписание
projectIdstringДаPostHog Project ID (e.g., "12345" or project UUID)
regionstringДаPostHog cloud region: us or eu
apiKeystringДаPostHog Personal API Key
limitnumberНетКоличество результатов для возврата per page (default: 100, e.g., 10, 50, 100)
offsetnumberНетThe initial index from which to return results (e.g., 0, 100, 200)
searchstringНетSearch term to filter property definitions by name
typestringНетFilter by property type: event, person, or group

Выходные данные

ПараметрТипОписание
countnumberTotal number of property definitions
nextstringURL for the next page of results
previousstringURL for the previous page of results
resultsarrayList of property definitions
idstringUnique identifier for the property definition
namestringProperty name
descriptionstringProperty description
tagsarrayTags associated С помощью property
is_numericalbooleanПроизошла ли property is numerical
is_seen_on_filtered_eventsbooleanПроизошла ли property is seen on filtered events
property_typestringThe data type of the property
typestringProperty type: event, person, or group
volume_30_daynumberNumber of times property was seen in the last 30 days
query_usage_30_daynumberNumber of times this property was queried in the last 30 days
created_atstringISO timestamp when the property was created
updated_atstringISO timestamp when the property was updated
updated_byobjectUser who last updated the property

posthog_get_property_definition

Получить details of a specific property definition in PostHog. Returns comprehensive information about the property including metadata, type, usage statistics, и verification status.

Входные параметры

ПараметрТипОбязательныйОписание
projectIdstringДаPostHog Project ID (e.g., "12345" or project UUID)
propertyDefinitionIdstringДаProperty Definition ID to retrieve
regionstringДаPostHog cloud region: us or eu
apiKeystringДаPostHog Personal API Key

Выходные данные

ПараметрТипОписание
idstringUnique identifier for the property definition
namestringProperty name
descriptionstringProperty description
tagsarrayTags associated С помощью property
is_numericalbooleanПроизошла ли property is numerical
is_seen_on_filtered_eventsbooleanПроизошла ли property is seen on filtered events
property_typestringThe data type of the property
typestringProperty type: event, person, or group
volume_30_daynumberNumber of times property was seen in the last 30 days
query_usage_30_daynumberNumber of times this property was queried in the last 30 days
created_atstringISO timestamp when the property was created
updated_atstringISO timestamp when the property was updated
updated_byobjectUser who last updated the property
verifiedbooleanПроизошла ли property has been verified
verified_atstringISO timestamp when the property was verified
verified_bystringUser who verified the property
examplestringExample value for the property

posthog_update_property_definition

Обновить property definition in PostHog. Can modify description, tags, property type, и verification status to maintain clean property schemas.

Входные параметры

ПараметрТипОбязательныйОписание
projectIdstringДаPostHog Project ID (e.g., "12345" or project UUID)
propertyDefinitionIdstringДаProperty Definition ID to update
regionstringДаPostHog cloud region: us or eu
apiKeystringДаPostHog Personal API Key
descriptionstringНетUpdated description for the property
tagsstringНетComma-separated list of tags to associate С помощью property
verifiedbooleanНетWhether to mark the property as verified
property_typestringНетdata type of the property (e.g., String, Numeric, Boolean, DateTime, etc.)

Выходные данные

ПараметрТипОписание
idstringUnique identifier for the property definition
namestringProperty name
descriptionstringUpdated property description
tagsarrayUpdated tags associated С помощью property
is_numericalbooleanПроизошла ли property is numerical
is_seen_on_filtered_eventsbooleanПроизошла ли property is seen on filtered events
property_typestringThe data type of the property
typestringProperty type: event, person, or group
volume_30_daynumberNumber of times property was seen in the last 30 days
query_usage_30_daynumberNumber of times this property was queried in the last 30 days
created_atstringISO timestamp when the property was created
updated_atstringISO timestamp when the property was updated
updated_byobjectUser who last updated the property
verifiedbooleanПроизошла ли property has been verified
verified_atstringISO timestamp when the property was verified
verified_bystringUser who verified the property
examplestringExample value for the property

posthog_list_projects

Список всех projects in the organization. Returns project details including IDs, names, API tokens, и settings. Useful для getting project IDs needed by other endpoints.

Входные параметры

ПараметрТипОбязательныйОписание
apiKeystringДаPostHog Personal API Key
regionstringНетCloud region: us or eu (default: us)

Выходные данные

ПараметрТипОписание
projectsarrayList of projects С помощьюir configuration and settings
idnumberProject ID
uuidstringProject UUID
organizationstringOrganization UUID
api_tokenstringProject API token for ingestion
app_urlsarrayAllowed app URLs
namestringProject name
slack_incoming_webhookstringSlack webhook URL for notifications
created_atstringProject creation timestamp
updated_atstringLast update timestamp
anonymize_ipsbooleanWhether IP anonymization is enabled
completed_snippet_onboardingbooleanWhether snippet onboarding is completed
ingested_eventbooleanWhether any event has been ingested
test_account_filtersarrayFilters for test accounts
is_demobooleanПроизошла ли эта is a demo project
timezonestringProject timezone
data_attributesarrayCustom data attributes

posthog_get_project

Получить подробную информацию about a specific project от ID. Returns comprehensive project configuration, settings, и feature flags.

Входные параметры

ПараметрТипОбязательныйОписание
projectIdstringДаProject ID (e.g., "12345" or project UUID)
apiKeystringДаPostHog Personal API Key
regionstringНетCloud region: us or eu (default: us)

Выходные данные

ПараметрТипОписание
projectobjectDetailed project information with all configuration settings
idnumberProject ID
uuidstringProject UUID
organizationstringOrganization UUID
api_tokenstringProject API token for ingestion
app_urlsarrayAllowed app URLs
namestringProject name
slack_incoming_webhookstringSlack webhook URL for notifications
created_atstringProject creation timestamp
updated_atstringLast update timestamp
anonymize_ipsbooleanWhether IP anonymization is enabled
completed_snippet_onboardingbooleanWhether snippet onboarding is completed
ingested_eventbooleanWhether any event has been ingested
test_account_filtersarrayFilters for test accounts
is_demobooleanПроизошла ли эта is a demo project
timezonestringProject timezone
data_attributesarrayCustom data attributes
person_display_name_propertiesarrayProperties used for person display names
correlation_configobjectConfiguration for correlation analysis
autocapture_opt_outbooleanWhether autocapture is disabled
autocapture_exceptions_opt_inbooleanWhether exception autocapture is enabled
session_recording_opt_inbooleanWhether session recording is enabled
capture_console_log_opt_inbooleanWhether console log capture is enabled
capture_performance_opt_inbooleanWhether performance capture is enabled

posthog_list_organizations

Список всех organizations the user has access to. Returns organization details including name, slug, membership level, и available product features.

Входные параметры

ПараметрТипОбязательныйОписание
apiKeystringДаPostHog Personal API Key
regionstringНетCloud region: us or eu (default: us)

Выходные данные

ПараметрТипОписание
organizationsarrayList of organizations С помощьюir settings and features
idstringOrganization ID (UUID)
namestringOrganization name
slugstringOrganization slug
created_atstringOrganization creation timestamp
updated_atstringLast update timestamp
membership_levelnumberUser membership level in organization
plugins_access_levelnumberAccess level for plugins/apps
teamsarrayList of team IDs in this organization
available_product_featuresarrayAvailable product features and their limits

posthog_get_organization

Получить подробную информацию about a specific organization от ID. Returns comprehensive organization settings, features, usage, и team information.

Входные параметры

ПараметрТипОбязательныйОписание
organizationIdstringДаOrganization ID (e.g., "01234567-89ab-cdef-0123-456789abcdef")
apiKeystringДаPostHog Personal API Key
regionstringНетCloud region: us or eu (default: us)

Выходные данные

ПараметрТипОписание
organizationobjectDetailed organization information with settings and features
idstringOrganization ID (UUID)
namestringOrganization name
slugstringOrganization slug
created_atstringOrganization creation timestamp
updated_atstringLast update timestamp
membership_levelnumberUser membership level in organization
plugins_access_levelnumberAccess level for plugins/apps
teamsarrayList of team IDs in this organization
available_product_featuresarrayAvailable product features С помощьюir limits and descriptions
domain_whitelistarrayWhitelisted domains for organization
is_member_join_email_enabledbooleanWhether member join emails are enabled
metadataobjectOrganization metadata
customer_idstringCustomer ID for billing
available_featuresarrayList of available feature flags for organization
usageobjectOrganization usage statistics

On this page

Инструкции по использованию
Инструменты
posthog_capture_event
Входные параметры
Выходные данные
posthog_batch_events
Входные параметры
Выходные данные
posthog_list_persons
Входные параметры
Выходные данные
posthog_get_person
Входные параметры
Выходные данные
posthog_delete_person
Входные параметры
Выходные данные
posthog_запрос
Входные параметры
Выходные данные
posthog_list_insights
Входные параметры
Выходные данные
posthog_get_insight
Входные параметры
Выходные данные
posthog_create_insight
Входные параметры
Выходные данные
posthog_list_dashboards
Входные параметры
Выходные данные
posthog_get_dashboard
Входные параметры
Выходные данные
posthog_list_actions
Входные параметры
Выходные данные
posthog_list_cohorts
Входные параметры
Выходные данные
posthog_get_cohort
Входные параметры
Выходные данные
posthog_create_cohort
Входные параметры
Выходные данные
posthog_list_annotations
Входные параметры
Выходные данные
posthog_create_annotation
Входные параметры
Выходные данные
posthog_list_feature_flags
Входные параметры
Выходные данные
posthog_get_feature_flag
Входные параметры
Выходные данные
posthog_create_feature_flag
Входные параметры
Выходные данные
posthog_update_feature_flag
Входные параметры
Выходные данные
posthog_delete_feature_flag
Входные параметры
Выходные данные
posthog_evaluate_flags
Входные параметры
Выходные данные
posthog_list_experiments
Входные параметры
Выходные данные
posthog_get_experiment
Входные параметры
Выходные данные
posthog_create_experiment
Входные параметры
Выходные данные
posthog_list_surveys
Входные параметры
Выходные данные
posthog_get_survey
Входные параметры
Выходные данные
posthog_create_survey
Входные параметры
Выходные данные
posthog_update_survey
Входные параметры
Выходные данные
posthog_list_session_recordings
Входные параметры
Выходные данные
posthog_get_session_recording
Входные параметры
Выходные данные
posthog_list_recording_playlists
Входные параметры
Выходные данные
posthog_list_event_definitions
Входные параметры
Выходные данные
posthog_get_event_definition
Входные параметры
Выходные данные
posthog_update_event_definition
Входные параметры
Выходные данные
posthog_list_property_definitions
Входные параметры
Выходные данные
posthog_get_property_definition
Входные параметры
Выходные данные
posthog_update_property_definition
Входные параметры
Выходные данные
posthog_list_projects
Входные параметры
Выходные данные
posthog_get_project
Входные параметры
Выходные данные
posthog_list_organizations
Входные параметры
Выходные данные
posthog_get_organization
Входные параметры
Выходные данные
Начните создавать сегодня
Нам доверяют более 100 000 разработчиков.
SaaS-платформа для создания AI-агентов и управления агентным workforce.
Начать