analytics
PostHog Lua API for KosmoKrator Agents
Agent-facing Lua documentation and function reference for the PostHog KosmoKrator integration.Lua Namespace
Agents call this integration through app.integrations.posthog.*.
Use lua_read_doc("integrations.posthog") inside KosmoKrator to discover the same reference at runtime.
Call Lua from the Headless CLI
Use kosmo integrations:lua when a shell script, CI job, cron job, or another coding CLI should run a deterministic
PostHog workflow without starting an interactive agent session.
kosmo integrations:lua --eval 'dump(app.integrations.posthog.capture_event({event = "example_event", distinct_id = "example_distinct_id", properties = "example_properties", timestamp = "example_timestamp", api_key = "example_api_key", send_feature_flags = true}))' --json kosmo integrations:lua --eval 'print(docs.read("posthog"))' --json
kosmo integrations:lua --eval 'print(docs.read("posthog.capture_event"))' --json Workflow file
Put repeatable logic in a Lua file, then execute it with JSON output for the calling process.
local posthog = app.integrations.posthog
local result = posthog.capture_event({event = "example_event", distinct_id = "example_distinct_id", properties = "example_properties", timestamp = "example_timestamp", api_key = "example_api_key", send_feature_flags = true})
dump(result) kosmo integrations:lua workflow.lua --json
kosmo integrations:lua workflow.lua --force --json integrations:lua exposes app.integrations.posthog, app.mcp.*, docs.*, json.*, and regex.*. Use app.integrations.posthog.default.* or app.integrations.posthog.work.* when you configured named credential accounts.
MCP-only Lua
If the script only needs configured MCP servers and does not need PostHog, use the narrower mcp:lua command.
# Use mcp:lua for MCP-only scripts; use integrations:lua for this integration namespace.
kosmo mcp:lua --eval 'dump(mcp.servers())' --json Agent-Facing Lua Docs
This is the rendered version of the full Lua documentation exposed to agents when they inspect the integration namespace.
PostHog Lua API Reference
This package exposes PostHog tools from the official PostHog OpenAPI schema at https://us.posthog.com/api/schema/ plus a small posthog_capture_event helper for the documented ingestion API at https://posthog.com/docs/api/capture.
Namespace: posthog
Authentication and Scope
Private API tools use a PostHog personal API token with Authorization: Bearer <api_token>. Configure url for US, EU, or self-hosted PostHog instances. Many tools require project_id or environment_id; configure defaults once, or pass those IDs as tool parameters.
posthog_capture_event sends events to /capture/ and uses project_api_key by default. You can pass api_key per call when routing events to a different project.
Coverage
Generated operation tools: 1600 Total tools including capture helper: 1601
High-use compatibility slugs retained:
posthog_list_events,posthog_get_eventposthog_list_persons,posthog_get_personposthog_list_feature_flags,posthog_get_feature_flag,posthog_create_feature_flag,posthog_update_feature_flag,posthog_delete_feature_flagposthog_list_insights,posthog_get_insightposthog_list_dashboards,posthog_get_dashboardposthog_list_cohorts
Generated tools follow the pattern posthog_<operation_id>. Path and query parameters are exposed by snake_case name. Request bodies are passed as body, or as loose top-level arguments that are not already consumed as path/query/header parameters.
Examples
List recent events
local result = app.integrations.posthog.posthog_list_events({
environment_id = "env_123",
limit = 20
})
Get a feature flag using configured project_id
local flag = app.integrations.posthog.posthog_get_feature_flag({
id = 42
})
Create a feature flag
local created = app.integrations.posthog.posthog_create_feature_flag({
body = {
name = "New dashboard",
key = "new-dashboard",
active = true
}
})
Capture an event
local event = app.integrations.posthog.posthog_capture_event({
event = "purchase",
distinct_id = "user-123",
properties = {
plan = "pro",
amount = 49.99
}
})
Return Shape
Tools return the parsed JSON response from PostHog. Empty 204 responses return an empty table. Non-JSON responses return { body = "...", content_type = "..." } so agents can handle export/download-style endpoints without losing content.
Raw agent markdown
# PostHog Lua API Reference
This package exposes PostHog tools from the official PostHog OpenAPI schema at `https://us.posthog.com/api/schema/` plus a small `posthog_capture_event` helper for the documented ingestion API at `https://posthog.com/docs/api/capture`.
Namespace: `posthog`
## Authentication and Scope
Private API tools use a PostHog personal API token with `Authorization: Bearer <api_token>`. Configure `url` for US, EU, or self-hosted PostHog instances. Many tools require `project_id` or `environment_id`; configure defaults once, or pass those IDs as tool parameters.
`posthog_capture_event` sends events to `/capture/` and uses `project_api_key` by default. You can pass `api_key` per call when routing events to a different project.
## Coverage
Generated operation tools: 1600
Total tools including capture helper: 1601
High-use compatibility slugs retained:
- `posthog_list_events`, `posthog_get_event`
- `posthog_list_persons`, `posthog_get_person`
- `posthog_list_feature_flags`, `posthog_get_feature_flag`, `posthog_create_feature_flag`, `posthog_update_feature_flag`, `posthog_delete_feature_flag`
- `posthog_list_insights`, `posthog_get_insight`
- `posthog_list_dashboards`, `posthog_get_dashboard`
- `posthog_list_cohorts`
Generated tools follow the pattern `posthog_<operation_id>`. Path and query parameters are exposed by snake_case name. Request bodies are passed as `body`, or as loose top-level arguments that are not already consumed as path/query/header parameters.
## Examples
### List recent events
```lua
local result = app.integrations.posthog.posthog_list_events({
environment_id = "env_123",
limit = 20
})
```
### Get a feature flag using configured project_id
```lua
local flag = app.integrations.posthog.posthog_get_feature_flag({
id = 42
})
```
### Create a feature flag
```lua
local created = app.integrations.posthog.posthog_create_feature_flag({
body = {
name = "New dashboard",
key = "new-dashboard",
active = true
}
})
```
### Capture an event
```lua
local event = app.integrations.posthog.posthog_capture_event({
event = "purchase",
distinct_id = "user-123",
properties = {
plan = "pro",
amount = 49.99
}
})
```
## Return Shape
Tools return the parsed JSON response from PostHog. Empty `204` responses return an empty table. Non-JSON responses return `{ body = "...", content_type = "..." }` so agents can handle export/download-style endpoints without losing content. local result = app.integrations.posthog.capture_event({event = "example_event", distinct_id = "example_distinct_id", properties = "example_properties", timestamp = "example_timestamp", api_key = "example_api_key", send_feature_flags = true})
print(result) Functions
capture_event Write
Send one analytics event through the PostHog capture API.
- Lua path
app.integrations.posthog.capture_event- Full name
posthog.posthog_capture_event
| Parameter | Type | Required | Description |
|---|---|---|---|
event | string | yes | Event name to capture. |
distinct_id | string | yes | Identifier for the person or actor. |
properties | object | no | Optional event properties. |
timestamp | string | no | Optional ISO 8601 event timestamp. |
api_key | string | no | Optional project API key override. Defaults to configured project_api_key. |
send_feature_flags | boolean | no | Whether PostHog should enrich the event with feature flag data. |
check_access Read
Check access
- Lua path
app.integrations.posthog.check_access- Full name
posthog.posthog_codeinvitescheckaccessretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
redeem_invite_code Write
Redeem invite code
- Lua path
app.integrations.posthog.redeem_invite_code- Full name
posthog.posthog_codeinvitesredeemcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsalertslist Read
Environmentsalertslist
- Lua path
app.integrations.posthog.environmentsalertslist- Full name
posthog.posthog_environmentsalertslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsalertscreate Write
Environmentsalertscreate
- Lua path
app.integrations.posthog.environmentsalertscreate- Full name
posthog.posthog_environmentsalertscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsalertsretrieve Read
Environmentsalertsretrieve
- Lua path
app.integrations.posthog.environmentsalertsretrieve- Full name
posthog.posthog_environmentsalertsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsalertsupdate Write
Environmentsalertsupdate
- Lua path
app.integrations.posthog.environmentsalertsupdate- Full name
posthog.posthog_environmentsalertsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsalertspartialupdate Write
Environmentsalertspartialupdate
- Lua path
app.integrations.posthog.environmentsalertspartialupdate- Full name
posthog.posthog_environmentsalertspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsalertsdestroy Write
Environmentsalertsdestroy
- Lua path
app.integrations.posthog.environmentsalertsdestroy- Full name
posthog.posthog_environmentsalertsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsalertssimulatecreate Write
Simulate a detector on an insight's historical data. Read-only - no AlertCheck records are created.
- Lua path
app.integrations.posthog.environmentsalertssimulatecreate- Full name
posthog.posthog_environmentsalertssimulatecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsbatchexportslist Read
Environmentsbatchexportslist
- Lua path
app.integrations.posthog.environmentsbatchexportslist- Full name
posthog.posthog_environmentsbatchexportslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsbatchexportscreate Write
Environmentsbatchexportscreate
- Lua path
app.integrations.posthog.environmentsbatchexportscreate- Full name
posthog.posthog_environmentsbatchexportscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsbatchexportsbackfillslist Read
ViewSet for BatchExportBackfill models. Allows creating and reading backfills, but not updating or deleting them.
- Lua path
app.integrations.posthog.environmentsbatchexportsbackfillslist- Full name
posthog.posthog_environmentsbatchexportsbackfillslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsbatchexportsbackfillscreate Write
Create a new backfill for a BatchExport.
- Lua path
app.integrations.posthog.environmentsbatchexportsbackfillscreate- Full name
posthog.posthog_environmentsbatchexportsbackfillscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsbatchexportsbackfillsretrieve Read
ViewSet for BatchExportBackfill models. Allows creating and reading backfills, but not updating or deleting them.
- Lua path
app.integrations.posthog.environmentsbatchexportsbackfillsretrieve- Full name
posthog.posthog_environmentsbatchexportsbackfillsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsbatchexportsbackfillscancelcreate Write
Cancel a batch export backfill.
- Lua path
app.integrations.posthog.environmentsbatchexportsbackfillscancelcreate- Full name
posthog.posthog_environmentsbatchexportsbackfillscancelcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsbatchexportsrunslist Read
Environmentsbatchexportsrunslist
- Lua path
app.integrations.posthog.environmentsbatchexportsrunslist- Full name
posthog.posthog_environmentsbatchexportsrunslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsbatchexportsrunsretrieve Read
Environmentsbatchexportsrunsretrieve
- Lua path
app.integrations.posthog.environmentsbatchexportsrunsretrieve- Full name
posthog.posthog_environmentsbatchexportsrunsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsbatchexportsrunscancelcreate Write
Cancel a batch export run.
- Lua path
app.integrations.posthog.environmentsbatchexportsrunscancelcreate- Full name
posthog.posthog_environmentsbatchexportsrunscancelcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsbatchexportsrunslogsretrieve Read
Environmentsbatchexportsrunslogsretrieve
- Lua path
app.integrations.posthog.environmentsbatchexportsrunslogsretrieve- Full name
posthog.posthog_environmentsbatchexportsrunslogsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsbatchexportsrunsretrycreate Write
Retry a batch export run. We use the same underlying mechanism as when backfilling a batch export, as retrying a run is the same as backfilling one run.
- Lua path
app.integrations.posthog.environmentsbatchexportsrunsretrycreate- Full name
posthog.posthog_environmentsbatchexportsrunsretrycreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsbatchexportsretrieve Read
Environmentsbatchexportsretrieve
- Lua path
app.integrations.posthog.environmentsbatchexportsretrieve- Full name
posthog.posthog_environmentsbatchexportsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsbatchexportsupdate Write
Environmentsbatchexportsupdate
- Lua path
app.integrations.posthog.environmentsbatchexportsupdate- Full name
posthog.posthog_environmentsbatchexportsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsbatchexportspartialupdate Write
Environmentsbatchexportspartialupdate
- Lua path
app.integrations.posthog.environmentsbatchexportspartialupdate- Full name
posthog.posthog_environmentsbatchexportspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsbatchexportsdestroy Write
Environmentsbatchexportsdestroy
- Lua path
app.integrations.posthog.environmentsbatchexportsdestroy- Full name
posthog.posthog_environmentsbatchexportsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsbatchexportslogsretrieve Read
Environmentsbatchexportslogsretrieve
- Lua path
app.integrations.posthog.environmentsbatchexportslogsretrieve- Full name
posthog.posthog_environmentsbatchexportslogsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsbatchexportspausecreate Write
Pause a BatchExport.
- Lua path
app.integrations.posthog.environmentsbatchexportspausecreate- Full name
posthog.posthog_environmentsbatchexportspausecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsbatchexportsrunteststepcreate Write
Environmentsbatchexportsrunteststepcreate
- Lua path
app.integrations.posthog.environmentsbatchexportsrunteststepcreate- Full name
posthog.posthog_environmentsbatchexportsrunteststepcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsbatchexportsunpausecreate Write
Unpause a BatchExport.
- Lua path
app.integrations.posthog.environmentsbatchexportsunpausecreate- Full name
posthog.posthog_environmentsbatchexportsunpausecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsbatchexportsrunteststepnewcreate Write
Environmentsbatchexportsrunteststepnewcreate
- Lua path
app.integrations.posthog.environmentsbatchexportsrunteststepnewcreate- Full name
posthog.posthog_environmentsbatchexportsrunteststepnewcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsbatchexportstestretrieve Read
Environmentsbatchexportstestretrieve
- Lua path
app.integrations.posthog.environmentsbatchexportstestretrieve- Full name
posthog.posthog_environmentsbatchexportstestretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdashboardslist Read
Environmentsdashboardslist
- Lua path
app.integrations.posthog.environmentsdashboardslist- Full name
posthog.posthog_environmentsdashboardslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdashboardscreate Write
Environmentsdashboardscreate
- Lua path
app.integrations.posthog.environmentsdashboardscreate- Full name
posthog.posthog_environmentsdashboardscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdashboardscollaboratorslist Read
Environmentsdashboardscollaboratorslist
- Lua path
app.integrations.posthog.environmentsdashboardscollaboratorslist- Full name
posthog.posthog_environmentsdashboardscollaboratorslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdashboardscollaboratorscreate Write
Environmentsdashboardscollaboratorscreate
- Lua path
app.integrations.posthog.environmentsdashboardscollaboratorscreate- Full name
posthog.posthog_environmentsdashboardscollaboratorscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdashboardscollaboratorsdestroy Write
Environmentsdashboardscollaboratorsdestroy
- Lua path
app.integrations.posthog.environmentsdashboardscollaboratorsdestroy- Full name
posthog.posthog_environmentsdashboardscollaboratorsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdashboardssharinglist Read
Environmentsdashboardssharinglist
- Lua path
app.integrations.posthog.environmentsdashboardssharinglist- Full name
posthog.posthog_environmentsdashboardssharinglist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdashboardssharingpasswordscreate Write
Create a new password for the sharing configuration.
- Lua path
app.integrations.posthog.environmentsdashboardssharingpasswordscreate- Full name
posthog.posthog_environmentsdashboardssharingpasswordscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdashboardssharingpasswordsdestroy Write
Delete a password from the sharing configuration.
- Lua path
app.integrations.posthog.environmentsdashboardssharingpasswordsdestroy- Full name
posthog.posthog_environmentsdashboardssharingpasswordsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdashboardssharingrefreshcreate Write
Environmentsdashboardssharingrefreshcreate
- Lua path
app.integrations.posthog.environmentsdashboardssharingrefreshcreate- Full name
posthog.posthog_environmentsdashboardssharingrefreshcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdashboardsretrieve Read
Environmentsdashboardsretrieve
- Lua path
app.integrations.posthog.environmentsdashboardsretrieve- Full name
posthog.posthog_environmentsdashboardsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdashboardsupdate Write
Environmentsdashboardsupdate
- Lua path
app.integrations.posthog.environmentsdashboardsupdate- Full name
posthog.posthog_environmentsdashboardsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdashboardspartialupdate Write
Environmentsdashboardspartialupdate
- Lua path
app.integrations.posthog.environmentsdashboardspartialupdate- Full name
posthog.posthog_environmentsdashboardspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdashboardsdestroy Write
Hard delete of this model is not allowed. Use a patch API call to set "deleted" to true
- Lua path
app.integrations.posthog.environmentsdashboardsdestroy- Full name
posthog.posthog_environmentsdashboardsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdashboardsanalyzerefreshresultcreate Write
Generate AI analysis comparing before/after dashboard refresh. Expects cachekey in request body pointing to the stored 'before' state.
- Lua path
app.integrations.posthog.environmentsdashboardsanalyzerefreshresultcreate- Full name
posthog.posthog_environmentsdashboardsanalyzerefreshresultcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdashboardscopytilecreate Write
Copy an existing dashboard tile to another dashboard (insight or text card; new tile row).
- Lua path
app.integrations.posthog.environmentsdashboardscopytilecreate- Full name
posthog.posthog_environmentsdashboardscopytilecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdashboardsmovetilepartialupdate Write
Environmentsdashboardsmovetilepartialupdate
- Lua path
app.integrations.posthog.environmentsdashboardsmovetilepartialupdate- Full name
posthog.posthog_environmentsdashboardsmovetilepartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdashboardsreordertilescreate Write
Environmentsdashboardsreordertilescreate
- Lua path
app.integrations.posthog.environmentsdashboardsreordertilescreate- Full name
posthog.posthog_environmentsdashboardsreordertilescreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdashboardsruninsightsretrieve Read
Run all insights on a dashboard and return their results.
- Lua path
app.integrations.posthog.environmentsdashboardsruninsightsretrieve- Full name
posthog.posthog_environmentsdashboardsruninsightsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdashboardssnapshotcreate Write
Snapshot the current dashboard state (from cache) for AI analysis. Returns a cachekey representing the 'before' state, to be used with analyzerefreshresult.
- Lua path
app.integrations.posthog.environmentsdashboardssnapshotcreate- Full name
posthog.posthog_environmentsdashboardssnapshotcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdashboardsstreamtilesretrieve Read
Stream dashboard metadata and tiles via Server-Sent Events. Sends metadata first, then tiles as they are rendered.
- Lua path
app.integrations.posthog.environmentsdashboardsstreamtilesretrieve- Full name
posthog.posthog_environmentsdashboardsstreamtilesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdashboardsbulkupdatetagscreate Write
Bulk update tags on multiple objects. Accepts: - {"ids": [...], "action": "add"|"remove"|"set", "tags": ["tag1", "tag2"]} Actions: - "add": Add tags to existing tags on each object - "remove": Remove specific tags from each object - "set": Replace all tags...
- Lua path
app.integrations.posthog.environmentsdashboardsbulkupdatetagscreate- Full name
posthog.posthog_environmentsdashboardsbulkupdatetagscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdashboardscreatefromtemplatejsoncreate Write
Environmentsdashboardscreatefromtemplatejsoncreate
- Lua path
app.integrations.posthog.environmentsdashboardscreatefromtemplatejsoncreate- Full name
posthog.posthog_environmentsdashboardscreatefromtemplatejsoncreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdashboardscreateunlisteddashboardcreate Write
Creates an unlisted dashboard from template by tag. Enforces uniqueness (one per tag per team). Returns 409 if unlisted dashboard with this tag already exists.
- Lua path
app.integrations.posthog.environmentsdashboardscreateunlisteddashboardcreate- Full name
posthog.posthog_environmentsdashboardscreateunlisteddashboardcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdatacolorthemeslist Read
Environmentsdatacolorthemeslist
- Lua path
app.integrations.posthog.environmentsdatacolorthemeslist- Full name
posthog.posthog_environmentsdatacolorthemeslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdatacolorthemescreate Write
Environmentsdatacolorthemescreate
- Lua path
app.integrations.posthog.environmentsdatacolorthemescreate- Full name
posthog.posthog_environmentsdatacolorthemescreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdatacolorthemesretrieve Read
Environmentsdatacolorthemesretrieve
- Lua path
app.integrations.posthog.environmentsdatacolorthemesretrieve- Full name
posthog.posthog_environmentsdatacolorthemesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdatacolorthemesupdate Write
Environmentsdatacolorthemesupdate
- Lua path
app.integrations.posthog.environmentsdatacolorthemesupdate- Full name
posthog.posthog_environmentsdatacolorthemesupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdatacolorthemespartialupdate Write
Environmentsdatacolorthemespartialupdate
- Lua path
app.integrations.posthog.environmentsdatacolorthemespartialupdate- Full name
posthog.posthog_environmentsdatacolorthemespartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdatacolorthemesdestroy Write
Environmentsdatacolorthemesdestroy
- Lua path
app.integrations.posthog.environmentsdatacolorthemesdestroy- Full name
posthog.posthog_environmentsdatacolorthemesdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdatamodelingjobslist Read
List data modeling jobs which are "runs" for our saved queries.
- Lua path
app.integrations.posthog.environmentsdatamodelingjobslist- Full name
posthog.posthog_environmentsdatamodelingjobslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdatamodelingjobsretrieve Read
List data modeling jobs which are "runs" for our saved queries.
- Lua path
app.integrations.posthog.environmentsdatamodelingjobsretrieve- Full name
posthog.posthog_environmentsdatamodelingjobsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdatamodelingjobsrecentretrieve Read
Get the most recent non-running job for each saved query from the v2 backend.
- Lua path
app.integrations.posthog.environmentsdatamodelingjobsrecentretrieve- Full name
posthog.posthog_environmentsdatamodelingjobsrecentretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdatamodelingjobsrunningretrieve Read
Get all currently running jobs from the v2 backend.
- Lua path
app.integrations.posthog.environmentsdatamodelingjobsrunningretrieve- Full name
posthog.posthog_environmentsdatamodelingjobsrunningretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdatawarehousecheckdatabasenameretrieve Read
Check if a database name is available.
- Lua path
app.integrations.posthog.environmentsdatawarehousecheckdatabasenameretrieve- Full name
posthog.posthog_environmentsdatawarehousecheckdatabasenameretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdatawarehousecompletedactivityretrieve Read
Returns completed/non-running activities (jobs with status 'Completed'). Supports pagination and cutoff time filtering.
- Lua path
app.integrations.posthog.environmentsdatawarehousecompletedactivityretrieve- Full name
posthog.posthog_environmentsdatawarehousecompletedactivityretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdatawarehousedatahealthissuesretrieve Read
Returns failed/disabled data pipeline items for the Pipeline status side panel. Includes: materializations, syncs, sources, destinations, and transformations.
- Lua path
app.integrations.posthog.environmentsdatawarehousedatahealthissuesretrieve- Full name
posthog.posthog_environmentsdatawarehousedatahealthissuesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdatawarehousedataopsdashboardretrieve Read
Returns the data ops overview dashboard ID for this team, creating it if it doesn't exist yet.
- Lua path
app.integrations.posthog.environmentsdatawarehousedataopsdashboardretrieve- Full name
posthog.posthog_environmentsdatawarehousedataopsdashboardretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdatawarehousedeprovisioncreate Write
Start deprovisioning the managed warehouse for this team.
- Lua path
app.integrations.posthog.environmentsdatawarehousedeprovisioncreate- Full name
posthog.posthog_environmentsdatawarehousedeprovisioncreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdatawarehousejobstatsretrieve Read
Returns success and failed job statistics for the last 1, 7, or 30 days. Query parameter 'days' can be 1, 7, or 30 (default: 7).
- Lua path
app.integrations.posthog.environmentsdatawarehousejobstatsretrieve- Full name
posthog.posthog_environmentsdatawarehousejobstatsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdatawarehousepropertyvaluesretrieve Read
API endpoints for data warehouse aggregate statistics and operations.
- Lua path
app.integrations.posthog.environmentsdatawarehousepropertyvaluesretrieve- Full name
posthog.posthog_environmentsdatawarehousepropertyvaluesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdatawarehouseprovisioncreate Write
Start provisioning a managed warehouse for this team.
- Lua path
app.integrations.posthog.environmentsdatawarehouseprovisioncreate- Full name
posthog.posthog_environmentsdatawarehouseprovisioncreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdatawarehouseresetpasswordcreate Write
Reset the root password for the managed warehouse.
- Lua path
app.integrations.posthog.environmentsdatawarehouseresetpasswordcreate- Full name
posthog.posthog_environmentsdatawarehouseresetpasswordcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdatawarehouserunningactivityretrieve Read
Returns currently running activities (jobs with status 'Running'). Supports pagination and cutoff time filtering.
- Lua path
app.integrations.posthog.environmentsdatawarehouserunningactivityretrieve- Full name
posthog.posthog_environmentsdatawarehouserunningactivityretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdatawarehousetotalrowsstatsretrieve Read
Returns aggregated statistics for the data warehouse total rows processed within the current billing period. Used by the frontend data warehouse scene to display usage information.
- Lua path
app.integrations.posthog.environmentsdatawarehousetotalrowsstatsretrieve- Full name
posthog.posthog_environmentsdatawarehousetotalrowsstatsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdatawarehousewarehousestatusretrieve Read
Get the current provisioning status of the managed warehouse.
- Lua path
app.integrations.posthog.environmentsdatawarehousewarehousestatusretrieve- Full name
posthog.posthog_environmentsdatawarehousewarehousestatusretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdatasetitemslist Read
Environmentsdatasetitemslist
- Lua path
app.integrations.posthog.environmentsdatasetitemslist- Full name
posthog.posthog_environmentsdatasetitemslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdatasetitemscreate Write
Environmentsdatasetitemscreate
- Lua path
app.integrations.posthog.environmentsdatasetitemscreate- Full name
posthog.posthog_environmentsdatasetitemscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdatasetitemsretrieve Read
Environmentsdatasetitemsretrieve
- Lua path
app.integrations.posthog.environmentsdatasetitemsretrieve- Full name
posthog.posthog_environmentsdatasetitemsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdatasetitemsupdate Write
Environmentsdatasetitemsupdate
- Lua path
app.integrations.posthog.environmentsdatasetitemsupdate- Full name
posthog.posthog_environmentsdatasetitemsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdatasetitemspartialupdate Write
Environmentsdatasetitemspartialupdate
- Lua path
app.integrations.posthog.environmentsdatasetitemspartialupdate- Full name
posthog.posthog_environmentsdatasetitemspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdatasetitemsdestroy Write
Hard delete of this model is not allowed. Use a patch API call to set "deleted" to true
- Lua path
app.integrations.posthog.environmentsdatasetitemsdestroy- Full name
posthog.posthog_environmentsdatasetitemsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdatasetslist Read
Environmentsdatasetslist
- Lua path
app.integrations.posthog.environmentsdatasetslist- Full name
posthog.posthog_environmentsdatasetslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdatasetscreate Write
Environmentsdatasetscreate
- Lua path
app.integrations.posthog.environmentsdatasetscreate- Full name
posthog.posthog_environmentsdatasetscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdatasetsretrieve Read
Environmentsdatasetsretrieve
- Lua path
app.integrations.posthog.environmentsdatasetsretrieve- Full name
posthog.posthog_environmentsdatasetsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdatasetsupdate Write
Environmentsdatasetsupdate
- Lua path
app.integrations.posthog.environmentsdatasetsupdate- Full name
posthog.posthog_environmentsdatasetsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdatasetspartialupdate Write
Environmentsdatasetspartialupdate
- Lua path
app.integrations.posthog.environmentsdatasetspartialupdate- Full name
posthog.posthog_environmentsdatasetspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdatasetsdestroy Write
Hard delete of this model is not allowed. Use a patch API call to set "deleted" to true
- Lua path
app.integrations.posthog.environmentsdatasetsdestroy- Full name
posthog.posthog_environmentsdatasetsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentselementslist Read
Environmentselementslist
- Lua path
app.integrations.posthog.environmentselementslist- Full name
posthog.posthog_environmentselementslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentselementscreate Write
Environmentselementscreate
- Lua path
app.integrations.posthog.environmentselementscreate- Full name
posthog.posthog_environmentselementscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentselementsretrieve Read
Environmentselementsretrieve
- Lua path
app.integrations.posthog.environmentselementsretrieve- Full name
posthog.posthog_environmentselementsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentselementsupdate Write
Environmentselementsupdate
- Lua path
app.integrations.posthog.environmentselementsupdate- Full name
posthog.posthog_environmentselementsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentselementspartialupdate Write
Environmentselementspartialupdate
- Lua path
app.integrations.posthog.environmentselementspartialupdate- Full name
posthog.posthog_environmentselementspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentselementsdestroy Write
Environmentselementsdestroy
- Lua path
app.integrations.posthog.environmentselementsdestroy- Full name
posthog.posthog_environmentselementsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentselementsstatsretrieve Read
The original version of this API always and only returned $autocapture elements If no include query parameter is sent this remains true. Now, you can pass a combination of include query parameters to get different types of elements Currently only $autocaptu...
- Lua path
app.integrations.posthog.environmentselementsstatsretrieve- Full name
posthog.posthog_environmentselementsstatsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentselementsvaluesretrieve Read
Environmentselementsvaluesretrieve
- Lua path
app.integrations.posthog.environmentselementsvaluesretrieve- Full name
posthog.posthog_environmentselementsvaluesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsendpointslist Read
List all endpoints for the team.
- Lua path
app.integrations.posthog.environmentsendpointslist- Full name
posthog.posthog_environmentsendpointslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsendpointscreate Write
Create a new endpoint.
- Lua path
app.integrations.posthog.environmentsendpointscreate- Full name
posthog.posthog_environmentsendpointscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsendpointsretrieve Read
Retrieve an endpoint, or a specific version via ?version=N.
- Lua path
app.integrations.posthog.environmentsendpointsretrieve- Full name
posthog.posthog_environmentsendpointsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsendpointsupdate Write
Update an existing endpoint. Parameters are optional. Pass version in body or ?version=N query param to target a specific version.
- Lua path
app.integrations.posthog.environmentsendpointsupdate- Full name
posthog.posthog_environmentsendpointsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsendpointspartialupdate Write
Update an existing endpoint.
- Lua path
app.integrations.posthog.environmentsendpointspartialupdate- Full name
posthog.posthog_environmentsendpointspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsendpointsdestroy Write
Delete an endpoint and clean up materialized query.
- Lua path
app.integrations.posthog.environmentsendpointsdestroy- Full name
posthog.posthog_environmentsendpointsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsendpointsmaterializationpreviewcreate Write
Preview the materialization transform for an endpoint. Shows what the query will look like after materialization, including range pair detection and bucket functions.
- Lua path
app.integrations.posthog.environmentsendpointsmaterializationpreviewcreate- Full name
posthog.posthog_environmentsendpointsmaterializationpreviewcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsendpointsmaterializationstatusretrieve Read
Get materialization status for an endpoint. Supports ?version=N query param.
- Lua path
app.integrations.posthog.environmentsendpointsmaterializationstatusretrieve- Full name
posthog.posthog_environmentsendpointsmaterializationstatusretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsendpointsopenapi_jsonretrieve Read
Get OpenAPI 3.0 specification for this endpoint. Use this to generate typed SDK clients.
- Lua path
app.integrations.posthog.environmentsendpointsopenapi_jsonretrieve- Full name
posthog.posthog_environmentsendpointsopenapi_jsonretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsendpointsrunretrieve Read
Execute endpoint with optional materialization. Supports version parameter, runs latest version if not set.
- Lua path
app.integrations.posthog.environmentsendpointsrunretrieve- Full name
posthog.posthog_environmentsendpointsrunretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsendpointsruncreate Write
Execute endpoint with optional materialization. Supports version parameter, runs latest version if not set.
- Lua path
app.integrations.posthog.environmentsendpointsruncreate- Full name
posthog.posthog_environmentsendpointsruncreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsendpointsversionslist Read
List all versions for an endpoint.
- Lua path
app.integrations.posthog.environmentsendpointsversionslist- Full name
posthog.posthog_environmentsendpointsversionslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsendpointslastexecutiontimescreate Write
Get the last execution times in the past 6 months for multiple endpoints.
- Lua path
app.integrations.posthog.environmentsendpointslastexecutiontimescreate- Full name
posthog.posthog_environmentsendpointslastexecutiontimescreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentserrortrackingreleaseslist Read
Environmentserrortrackingreleaseslist
- Lua path
app.integrations.posthog.environmentserrortrackingreleaseslist- Full name
posthog.posthog_environmentserrortrackingreleaseslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentserrortrackingreleasescreate Write
Environmentserrortrackingreleasescreate
- Lua path
app.integrations.posthog.environmentserrortrackingreleasescreate- Full name
posthog.posthog_environmentserrortrackingreleasescreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentserrortrackingreleasesretrieve Read
Environmentserrortrackingreleasesretrieve
- Lua path
app.integrations.posthog.environmentserrortrackingreleasesretrieve- Full name
posthog.posthog_environmentserrortrackingreleasesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentserrortrackingreleasesupdate Write
Environmentserrortrackingreleasesupdate
- Lua path
app.integrations.posthog.environmentserrortrackingreleasesupdate- Full name
posthog.posthog_environmentserrortrackingreleasesupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentserrortrackingreleasespartialupdate Write
Environmentserrortrackingreleasespartialupdate
- Lua path
app.integrations.posthog.environmentserrortrackingreleasespartialupdate- Full name
posthog.posthog_environmentserrortrackingreleasespartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentserrortrackingreleasesdestroy Write
Environmentserrortrackingreleasesdestroy
- Lua path
app.integrations.posthog.environmentserrortrackingreleasesdestroy- Full name
posthog.posthog_environmentserrortrackingreleasesdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentserrortrackingreleaseshashretrieve Read
Environmentserrortrackingreleaseshashretrieve
- Lua path
app.integrations.posthog.environmentserrortrackingreleaseshashretrieve- Full name
posthog.posthog_environmentserrortrackingreleaseshashretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentserrortrackingsymbolsetslist Read
Environmentserrortrackingsymbolsetslist
- Lua path
app.integrations.posthog.environmentserrortrackingsymbolsetslist- Full name
posthog.posthog_environmentserrortrackingsymbolsetslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentserrortrackingsymbolsetscreate Write
Environmentserrortrackingsymbolsetscreate
- Lua path
app.integrations.posthog.environmentserrortrackingsymbolsetscreate- Full name
posthog.posthog_environmentserrortrackingsymbolsetscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentserrortrackingsymbolsetsretrieve Read
Environmentserrortrackingsymbolsetsretrieve
- Lua path
app.integrations.posthog.environmentserrortrackingsymbolsetsretrieve- Full name
posthog.posthog_environmentserrortrackingsymbolsetsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentserrortrackingsymbolsetsupdate Write
Environmentserrortrackingsymbolsetsupdate
- Lua path
app.integrations.posthog.environmentserrortrackingsymbolsetsupdate- Full name
posthog.posthog_environmentserrortrackingsymbolsetsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentserrortrackingsymbolsetspartialupdate Write
Environmentserrortrackingsymbolsetspartialupdate
- Lua path
app.integrations.posthog.environmentserrortrackingsymbolsetspartialupdate- Full name
posthog.posthog_environmentserrortrackingsymbolsetspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentserrortrackingsymbolsetsdestroy Write
Environmentserrortrackingsymbolsetsdestroy
- Lua path
app.integrations.posthog.environmentserrortrackingsymbolsetsdestroy- Full name
posthog.posthog_environmentserrortrackingsymbolsetsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentserrortrackingsymbolsetsdownloadretrieve Read
Return a presigned URL for downloading the symbol set's source map.
- Lua path
app.integrations.posthog.environmentserrortrackingsymbolsetsdownloadretrieve- Full name
posthog.posthog_environmentserrortrackingsymbolsetsdownloadretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentserrortrackingsymbolsetsfinishuploadupdate Write
Environmentserrortrackingsymbolsetsfinishuploadupdate
- Lua path
app.integrations.posthog.environmentserrortrackingsymbolsetsfinishuploadupdate- Full name
posthog.posthog_environmentserrortrackingsymbolsetsfinishuploadupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentserrortrackingsymbolsetsbulkdeletecreate Write
Environmentserrortrackingsymbolsetsbulkdeletecreate
- Lua path
app.integrations.posthog.environmentserrortrackingsymbolsetsbulkdeletecreate- Full name
posthog.posthog_environmentserrortrackingsymbolsetsbulkdeletecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentserrortrackingsymbolsetsbulkfinishuploadcreate Write
Environmentserrortrackingsymbolsetsbulkfinishuploadcreate
- Lua path
app.integrations.posthog.environmentserrortrackingsymbolsetsbulkfinishuploadcreate- Full name
posthog.posthog_environmentserrortrackingsymbolsetsbulkfinishuploadcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentserrortrackingsymbolsetsbulkstartuploadcreate Write
Environmentserrortrackingsymbolsetsbulkstartuploadcreate
- Lua path
app.integrations.posthog.environmentserrortrackingsymbolsetsbulkstartuploadcreate- Full name
posthog.posthog_environmentserrortrackingsymbolsetsbulkstartuploadcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentserrortrackingsymbolsetsstartuploadcreate Write
Environmentserrortrackingsymbolsetsstartuploadcreate
- Lua path
app.integrations.posthog.environmentserrortrackingsymbolsetsstartuploadcreate- Full name
posthog.posthog_environmentserrortrackingsymbolsetsstartuploadcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentseventslist Read
This endpoint allows you to list and filter events. It is effectively deprecated and is kept only for backwards compatibility. If you ever ask about it you will be advised to not use it... If you want to ad-hoc list or aggregate events, use the Query endpoi...
- Lua path
app.integrations.posthog.environmentseventslist- Full name
posthog.posthog_environmentseventslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentseventsretrieve Read
Environmentseventsretrieve
- Lua path
app.integrations.posthog.environmentseventsretrieve- Full name
posthog.posthog_environmentseventsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentseventsvaluesretrieve Read
Environmentseventsvaluesretrieve
- Lua path
app.integrations.posthog.environmentseventsvaluesretrieve- Full name
posthog.posthog_environmentseventsvaluesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsexportslist Read
Environmentsexportslist
- Lua path
app.integrations.posthog.environmentsexportslist- Full name
posthog.posthog_environmentsexportslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsexportscreate Write
Environmentsexportscreate
- Lua path
app.integrations.posthog.environmentsexportscreate- Full name
posthog.posthog_environmentsexportscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsexportsretrieve Read
Environmentsexportsretrieve
- Lua path
app.integrations.posthog.environmentsexportsretrieve- Full name
posthog.posthog_environmentsexportsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsexportscontentretrieve Read
Environmentsexportscontentretrieve
- Lua path
app.integrations.posthog.environmentsexportscontentretrieve- Full name
posthog.posthog_environmentsexportscontentretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsexternaldataschemaslist Read
Environmentsexternaldataschemaslist
- Lua path
app.integrations.posthog.environmentsexternaldataschemaslist- Full name
posthog.posthog_environmentsexternaldataschemaslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsexternaldataschemascreate Write
Environmentsexternaldataschemascreate
- Lua path
app.integrations.posthog.environmentsexternaldataschemascreate- Full name
posthog.posthog_environmentsexternaldataschemascreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsexternaldataschemasretrieve Read
Environmentsexternaldataschemasretrieve
- Lua path
app.integrations.posthog.environmentsexternaldataschemasretrieve- Full name
posthog.posthog_environmentsexternaldataschemasretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsexternaldataschemasupdate Write
Environmentsexternaldataschemasupdate
- Lua path
app.integrations.posthog.environmentsexternaldataschemasupdate- Full name
posthog.posthog_environmentsexternaldataschemasupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsexternaldataschemaspartialupdate Write
Environmentsexternaldataschemaspartialupdate
- Lua path
app.integrations.posthog.environmentsexternaldataschemaspartialupdate- Full name
posthog.posthog_environmentsexternaldataschemaspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsexternaldataschemasdestroy Write
Environmentsexternaldataschemasdestroy
- Lua path
app.integrations.posthog.environmentsexternaldataschemasdestroy- Full name
posthog.posthog_environmentsexternaldataschemasdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsexternaldataschemascancelcreate Write
Environmentsexternaldataschemascancelcreate
- Lua path
app.integrations.posthog.environmentsexternaldataschemascancelcreate- Full name
posthog.posthog_environmentsexternaldataschemascancelcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsexternaldataschemasdeletedatadestroy Write
Environmentsexternaldataschemasdeletedatadestroy
- Lua path
app.integrations.posthog.environmentsexternaldataschemasdeletedatadestroy- Full name
posthog.posthog_environmentsexternaldataschemasdeletedatadestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsexternaldataschemasincrementalfieldscreate Write
Environmentsexternaldataschemasincrementalfieldscreate
- Lua path
app.integrations.posthog.environmentsexternaldataschemasincrementalfieldscreate- Full name
posthog.posthog_environmentsexternaldataschemasincrementalfieldscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsexternaldataschemasreloadcreate Write
Environmentsexternaldataschemasreloadcreate
- Lua path
app.integrations.posthog.environmentsexternaldataschemasreloadcreate- Full name
posthog.posthog_environmentsexternaldataschemasreloadcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsexternaldataschemasresynccreate Write
Environmentsexternaldataschemasresynccreate
- Lua path
app.integrations.posthog.environmentsexternaldataschemasresynccreate- Full name
posthog.posthog_environmentsexternaldataschemasresynccreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsexternaldatasourceslist Read
Create, Read, Update and Delete External data Sources.
- Lua path
app.integrations.posthog.environmentsexternaldatasourceslist- Full name
posthog.posthog_environmentsexternaldatasourceslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsexternaldatasourcescreate Write
Create, Read, Update and Delete External data Sources.
- Lua path
app.integrations.posthog.environmentsexternaldatasourcescreate- Full name
posthog.posthog_environmentsexternaldatasourcescreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsexternaldatasourcesretrieve Read
Create, Read, Update and Delete External data Sources.
- Lua path
app.integrations.posthog.environmentsexternaldatasourcesretrieve- Full name
posthog.posthog_environmentsexternaldatasourcesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsexternaldatasourcesupdate Write
Create, Read, Update and Delete External data Sources.
- Lua path
app.integrations.posthog.environmentsexternaldatasourcesupdate- Full name
posthog.posthog_environmentsexternaldatasourcesupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsexternaldatasourcespartialupdate Write
Create, Read, Update and Delete External data Sources.
- Lua path
app.integrations.posthog.environmentsexternaldatasourcespartialupdate- Full name
posthog.posthog_environmentsexternaldatasourcespartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsexternaldatasourcesdestroy Write
Create, Read, Update and Delete External data Sources.
- Lua path
app.integrations.posthog.environmentsexternaldatasourcesdestroy- Full name
posthog.posthog_environmentsexternaldatasourcesdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsexternaldatasourcesbulkupdateschemaspartialupdate Write
Create, Read, Update and Delete External data Sources.
- Lua path
app.integrations.posthog.environmentsexternaldatasourcesbulkupdateschemaspartialupdate- Full name
posthog.posthog_environmentsexternaldatasourcesbulkupdateschemaspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsexternaldatasourcescreatewebhookcreate Write
Create, Read, Update and Delete External data Sources.
- Lua path
app.integrations.posthog.environmentsexternaldatasourcescreatewebhookcreate- Full name
posthog.posthog_environmentsexternaldatasourcescreatewebhookcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsexternaldatasourcesdeletewebhookcreate Write
Create, Read, Update and Delete External data Sources.
- Lua path
app.integrations.posthog.environmentsexternaldatasourcesdeletewebhookcreate- Full name
posthog.posthog_environmentsexternaldatasourcesdeletewebhookcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsexternaldatasourcesjobsretrieve Read
Create, Read, Update and Delete External data Sources.
- Lua path
app.integrations.posthog.environmentsexternaldatasourcesjobsretrieve- Full name
posthog.posthog_environmentsexternaldatasourcesjobsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsexternaldatasourcesrefreshschemascreate Write
Fetch current schema/table list from the source and create any new ExternalDataSchema rows (no data sync).
- Lua path
app.integrations.posthog.environmentsexternaldatasourcesrefreshschemascreate- Full name
posthog.posthog_environmentsexternaldatasourcesrefreshschemascreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsexternaldatasourcesreloadcreate Write
Create, Read, Update and Delete External data Sources.
- Lua path
app.integrations.posthog.environmentsexternaldatasourcesreloadcreate- Full name
posthog.posthog_environmentsexternaldatasourcesreloadcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsexternaldatasourcesrevenueanalyticsconfigpartialupdate Write
Update the revenue analytics configuration and return the full external data source.
- Lua path
app.integrations.posthog.environmentsexternaldatasourcesrevenueanalyticsconfigpartialupdate- Full name
posthog.posthog_environmentsexternaldatasourcesrevenueanalyticsconfigpartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsexternaldatasourcesupdatewebhookinputscreate Write
Create, Read, Update and Delete External data Sources.
- Lua path
app.integrations.posthog.environmentsexternaldatasourcesupdatewebhookinputscreate- Full name
posthog.posthog_environmentsexternaldatasourcesupdatewebhookinputscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsexternaldatasourceswebhookinforetrieve Read
Create, Read, Update and Delete External data Sources.
- Lua path
app.integrations.posthog.environmentsexternaldatasourceswebhookinforetrieve- Full name
posthog.posthog_environmentsexternaldatasourceswebhookinforetrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsexternaldatasourcescheckcdcprerequisitescreate Write
Validate CDC prerequisites against a live Postgres connection. Used by the source wizard to surface / checks before source creation, and by the self-managed setup popup to verify user-created publications.
- Lua path
app.integrations.posthog.environmentsexternaldatasourcescheckcdcprerequisitescreate- Full name
posthog.posthog_environmentsexternaldatasourcescheckcdcprerequisitescreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsexternaldatasourcesconnectionslist Read
Create, Read, Update and Delete External data Sources.
- Lua path
app.integrations.posthog.environmentsexternaldatasourcesconnectionslist- Full name
posthog.posthog_environmentsexternaldatasourcesconnectionslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsexternaldatasourcesdatabaseschemacreate Write
Create, Read, Update and Delete External data Sources.
- Lua path
app.integrations.posthog.environmentsexternaldatasourcesdatabaseschemacreate- Full name
posthog.posthog_environmentsexternaldatasourcesdatabaseschemacreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsexternaldatasourcessourceprefixcreate Write
Create, Read, Update and Delete External data Sources.
- Lua path
app.integrations.posthog.environmentsexternaldatasourcessourceprefixcreate- Full name
posthog.posthog_environmentsexternaldatasourcessourceprefixcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsexternaldatasourceswizardretrieve Read
Create, Read, Update and Delete External data Sources.
- Lua path
app.integrations.posthog.environmentsexternaldatasourceswizardretrieve- Full name
posthog.posthog_environmentsexternaldatasourceswizardretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsfilesystemlist Read
Environmentsfilesystemlist
- Lua path
app.integrations.posthog.environmentsfilesystemlist- Full name
posthog.posthog_environmentsfilesystemlist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsfilesystemcreate Write
Environmentsfilesystemcreate
- Lua path
app.integrations.posthog.environmentsfilesystemcreate- Full name
posthog.posthog_environmentsfilesystemcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsfilesystemretrieve Read
Environmentsfilesystemretrieve
- Lua path
app.integrations.posthog.environmentsfilesystemretrieve- Full name
posthog.posthog_environmentsfilesystemretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsfilesystemupdate Write
Environmentsfilesystemupdate
- Lua path
app.integrations.posthog.environmentsfilesystemupdate- Full name
posthog.posthog_environmentsfilesystemupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsfilesystempartialupdate Write
Environmentsfilesystempartialupdate
- Lua path
app.integrations.posthog.environmentsfilesystempartialupdate- Full name
posthog.posthog_environmentsfilesystempartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsfilesystemdestroy Write
Environmentsfilesystemdestroy
- Lua path
app.integrations.posthog.environmentsfilesystemdestroy- Full name
posthog.posthog_environmentsfilesystemdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsfilesystemcountcreate Write
Get count of all files in a folder.
- Lua path
app.integrations.posthog.environmentsfilesystemcountcreate- Full name
posthog.posthog_environmentsfilesystemcountcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsfilesystemlinkcreate Write
Environmentsfilesystemlinkcreate
- Lua path
app.integrations.posthog.environmentsfilesystemlinkcreate- Full name
posthog.posthog_environmentsfilesystemlinkcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsfilesystemmovecreate Write
Environmentsfilesystemmovecreate
- Lua path
app.integrations.posthog.environmentsfilesystemmovecreate- Full name
posthog.posthog_environmentsfilesystemmovecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsfilesystemcountbypathcreate Write
Get count of all files in a folder.
- Lua path
app.integrations.posthog.environmentsfilesystemcountbypathcreate- Full name
posthog.posthog_environmentsfilesystemcountbypathcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsfilesystemlogviewretrieve Read
Environmentsfilesystemlogviewretrieve
- Lua path
app.integrations.posthog.environmentsfilesystemlogviewretrieve- Full name
posthog.posthog_environmentsfilesystemlogviewretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsfilesystemlogviewcreate Write
Environmentsfilesystemlogviewcreate
- Lua path
app.integrations.posthog.environmentsfilesystemlogviewcreate- Full name
posthog.posthog_environmentsfilesystemlogviewcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsfilesystemundodeletecreate Write
Environmentsfilesystemundodeletecreate
- Lua path
app.integrations.posthog.environmentsfilesystemundodeletecreate- Full name
posthog.posthog_environmentsfilesystemundodeletecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsfilesystemunfiledretrieve Read
Environmentsfilesystemunfiledretrieve
- Lua path
app.integrations.posthog.environmentsfilesystemunfiledretrieve- Full name
posthog.posthog_environmentsfilesystemunfiledretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsfilesystemshortcutlist Read
Environmentsfilesystemshortcutlist
- Lua path
app.integrations.posthog.environmentsfilesystemshortcutlist- Full name
posthog.posthog_environmentsfilesystemshortcutlist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsfilesystemshortcutcreate Write
Environmentsfilesystemshortcutcreate
- Lua path
app.integrations.posthog.environmentsfilesystemshortcutcreate- Full name
posthog.posthog_environmentsfilesystemshortcutcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsfilesystemshortcutretrieve Read
Environmentsfilesystemshortcutretrieve
- Lua path
app.integrations.posthog.environmentsfilesystemshortcutretrieve- Full name
posthog.posthog_environmentsfilesystemshortcutretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsfilesystemshortcutupdate Write
Environmentsfilesystemshortcutupdate
- Lua path
app.integrations.posthog.environmentsfilesystemshortcutupdate- Full name
posthog.posthog_environmentsfilesystemshortcutupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsfilesystemshortcutpartialupdate Write
Environmentsfilesystemshortcutpartialupdate
- Lua path
app.integrations.posthog.environmentsfilesystemshortcutpartialupdate- Full name
posthog.posthog_environmentsfilesystemshortcutpartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsfilesystemshortcutdestroy Write
Environmentsfilesystemshortcutdestroy
- Lua path
app.integrations.posthog.environmentsfilesystemshortcutdestroy- Full name
posthog.posthog_environmentsfilesystemshortcutdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsfilesystemshortcutreordercreate Write
Set the display order of the current user's shortcuts. orderedids becomes the new top-to-bottom order; any unknown IDs are rejected.
- Lua path
app.integrations.posthog.environmentsfilesystemshortcutreordercreate- Full name
posthog.posthog_environmentsfilesystemshortcutreordercreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsgroupslist Read
List all groups of a specific group type. You must pass ?grouptypeindex= in the URL. To get a list of valid group types, call /api/:projectid/groupstypes/
- Lua path
app.integrations.posthog.environmentsgroupslist- Full name
posthog.posthog_environmentsgroupslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsgroupscreate Write
Environmentsgroupscreate
- Lua path
app.integrations.posthog.environmentsgroupscreate- Full name
posthog.posthog_environmentsgroupscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsgroupsactivityretrieve Read
Environmentsgroupsactivityretrieve
- Lua path
app.integrations.posthog.environmentsgroupsactivityretrieve- Full name
posthog.posthog_environmentsgroupsactivityretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsgroupsdeletepropertycreate Write
Environmentsgroupsdeletepropertycreate
- Lua path
app.integrations.posthog.environmentsgroupsdeletepropertycreate- Full name
posthog.posthog_environmentsgroupsdeletepropertycreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsgroupsfindretrieve Read
Environmentsgroupsfindretrieve
- Lua path
app.integrations.posthog.environmentsgroupsfindretrieve- Full name
posthog.posthog_environmentsgroupsfindretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsgroupspropertydefinitionsretrieve Read
Environmentsgroupspropertydefinitionsretrieve
- Lua path
app.integrations.posthog.environmentsgroupspropertydefinitionsretrieve- Full name
posthog.posthog_environmentsgroupspropertydefinitionsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsgroupspropertyvaluesretrieve Read
Environmentsgroupspropertyvaluesretrieve
- Lua path
app.integrations.posthog.environmentsgroupspropertyvaluesretrieve- Full name
posthog.posthog_environmentsgroupspropertyvaluesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsgroupsupdatepropertycreate Write
Environmentsgroupsupdatepropertycreate
- Lua path
app.integrations.posthog.environmentsgroupsupdatepropertycreate- Full name
posthog.posthog_environmentsgroupsupdatepropertycreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsheatmapscreenshotscontentretrieve Read
Environmentsheatmapscreenshotscontentretrieve
- Lua path
app.integrations.posthog.environmentsheatmapscreenshotscontentretrieve- Full name
posthog.posthog_environmentsheatmapscreenshotscontentretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsheatmapslist Read
Environmentsheatmapslist
- Lua path
app.integrations.posthog.environmentsheatmapslist- Full name
posthog.posthog_environmentsheatmapslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsheatmapseventsretrieve Read
Environmentsheatmapseventsretrieve
- Lua path
app.integrations.posthog.environmentsheatmapseventsretrieve- Full name
posthog.posthog_environmentsheatmapseventsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentshogflowslist Read
Environmentshogflowslist
- Lua path
app.integrations.posthog.environmentshogflowslist- Full name
posthog.posthog_environmentshogflowslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentshogflowscreate Write
Environmentshogflowscreate
- Lua path
app.integrations.posthog.environmentshogflowscreate- Full name
posthog.posthog_environmentshogflowscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentshogflowsretrieve Read
Environmentshogflowsretrieve
- Lua path
app.integrations.posthog.environmentshogflowsretrieve- Full name
posthog.posthog_environmentshogflowsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentshogflowsupdate Write
Environmentshogflowsupdate
- Lua path
app.integrations.posthog.environmentshogflowsupdate- Full name
posthog.posthog_environmentshogflowsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentshogflowspartialupdate Write
Environmentshogflowspartialupdate
- Lua path
app.integrations.posthog.environmentshogflowspartialupdate- Full name
posthog.posthog_environmentshogflowspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentshogflowsdestroy Write
Environmentshogflowsdestroy
- Lua path
app.integrations.posthog.environmentshogflowsdestroy- Full name
posthog.posthog_environmentshogflowsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentshogflowsbatchjobsretrieve Read
Environmentshogflowsbatchjobsretrieve
- Lua path
app.integrations.posthog.environmentshogflowsbatchjobsretrieve- Full name
posthog.posthog_environmentshogflowsbatchjobsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentshogflowsbatchjobscreate Write
Environmentshogflowsbatchjobscreate
- Lua path
app.integrations.posthog.environmentshogflowsbatchjobscreate- Full name
posthog.posthog_environmentshogflowsbatchjobscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentshogflowsblockedrunsretrieve Read
List workflow runs that were blocked by the dedup bug.
- Lua path
app.integrations.posthog.environmentshogflowsblockedrunsretrieve- Full name
posthog.posthog_environmentshogflowsblockedrunsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentshogflowsinvocationscreate Write
Environmentshogflowsinvocationscreate
- Lua path
app.integrations.posthog.environmentshogflowsinvocationscreate- Full name
posthog.posthog_environmentshogflowsinvocationscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentshogflowslogsretrieve Read
Environmentshogflowslogsretrieve
- Lua path
app.integrations.posthog.environmentshogflowslogsretrieve- Full name
posthog.posthog_environmentshogflowslogsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentshogflowsmetricsretrieve Read
Environmentshogflowsmetricsretrieve
- Lua path
app.integrations.posthog.environmentshogflowsmetricsretrieve- Full name
posthog.posthog_environmentshogflowsmetricsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentshogflowsmetricstotalsretrieve Read
Environmentshogflowsmetricstotalsretrieve
- Lua path
app.integrations.posthog.environmentshogflowsmetricstotalsretrieve- Full name
posthog.posthog_environmentshogflowsmetricstotalsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentshogflowsreplayallblockedrunscreate Write
Replay all blocked runs in a single bulk call to Node.
- Lua path
app.integrations.posthog.environmentshogflowsreplayallblockedrunscreate- Full name
posthog.posthog_environmentshogflowsreplayallblockedrunscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentshogflowsreplayblockedruncreate Write
Replay a single blocked run. Django fetches the event, Node creates the invocation and writes the log.
- Lua path
app.integrations.posthog.environmentshogflowsreplayblockedruncreate- Full name
posthog.posthog_environmentshogflowsreplayblockedruncreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentshogflowsscheduleslist Read
Environmentshogflowsscheduleslist
- Lua path
app.integrations.posthog.environmentshogflowsscheduleslist- Full name
posthog.posthog_environmentshogflowsscheduleslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentshogflowsschedulescreate Write
Environmentshogflowsschedulescreate
- Lua path
app.integrations.posthog.environmentshogflowsschedulescreate- Full name
posthog.posthog_environmentshogflowsschedulescreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentshogflowsschedulespartialupdate Write
Environmentshogflowsschedulespartialupdate
- Lua path
app.integrations.posthog.environmentshogflowsschedulespartialupdate- Full name
posthog.posthog_environmentshogflowsschedulespartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentshogflowsschedulesdestroy Write
Environmentshogflowsschedulesdestroy
- Lua path
app.integrations.posthog.environmentshogflowsschedulesdestroy- Full name
posthog.posthog_environmentshogflowsschedulesdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentshogflowsbulkdeletecreate Write
Environmentshogflowsbulkdeletecreate
- Lua path
app.integrations.posthog.environmentshogflowsbulkdeletecreate- Full name
posthog.posthog_environmentshogflowsbulkdeletecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentshogflowsuserblastradiuscreate Write
Environmentshogflowsuserblastradiuscreate
- Lua path
app.integrations.posthog.environmentshogflowsuserblastradiuscreate- Full name
posthog.posthog_environmentshogflowsuserblastradiuscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentshogfunctionslist Read
Environmentshogfunctionslist
- Lua path
app.integrations.posthog.environmentshogfunctionslist- Full name
posthog.posthog_environmentshogfunctionslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentshogfunctionscreate Write
Environmentshogfunctionscreate
- Lua path
app.integrations.posthog.environmentshogfunctionscreate- Full name
posthog.posthog_environmentshogfunctionscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentshogfunctionsretrieve Read
Environmentshogfunctionsretrieve
- Lua path
app.integrations.posthog.environmentshogfunctionsretrieve- Full name
posthog.posthog_environmentshogfunctionsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentshogfunctionsupdate Write
Environmentshogfunctionsupdate
- Lua path
app.integrations.posthog.environmentshogfunctionsupdate- Full name
posthog.posthog_environmentshogfunctionsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentshogfunctionspartialupdate Write
Environmentshogfunctionspartialupdate
- Lua path
app.integrations.posthog.environmentshogfunctionspartialupdate- Full name
posthog.posthog_environmentshogfunctionspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentshogfunctionsdestroy Write
Hard delete of this model is not allowed. Use a patch API call to set "deleted" to true
- Lua path
app.integrations.posthog.environmentshogfunctionsdestroy- Full name
posthog.posthog_environmentshogfunctionsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentshogfunctionsenablebackfillscreate Write
Environmentshogfunctionsenablebackfillscreate
- Lua path
app.integrations.posthog.environmentshogfunctionsenablebackfillscreate- Full name
posthog.posthog_environmentshogfunctionsenablebackfillscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentshogfunctionsinvocationscreate Write
Environmentshogfunctionsinvocationscreate
- Lua path
app.integrations.posthog.environmentshogfunctionsinvocationscreate- Full name
posthog.posthog_environmentshogfunctionsinvocationscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentshogfunctionslogsretrieve Read
Environmentshogfunctionslogsretrieve
- Lua path
app.integrations.posthog.environmentshogfunctionslogsretrieve- Full name
posthog.posthog_environmentshogfunctionslogsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentshogfunctionsmetricsretrieve Read
Environmentshogfunctionsmetricsretrieve
- Lua path
app.integrations.posthog.environmentshogfunctionsmetricsretrieve- Full name
posthog.posthog_environmentshogfunctionsmetricsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentshogfunctionsmetricstotalsretrieve Read
Environmentshogfunctionsmetricstotalsretrieve
- Lua path
app.integrations.posthog.environmentshogfunctionsmetricstotalsretrieve- Full name
posthog.posthog_environmentshogfunctionsmetricstotalsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentshogfunctionsiconretrieve Read
Environmentshogfunctionsiconretrieve
- Lua path
app.integrations.posthog.environmentshogfunctionsiconretrieve- Full name
posthog.posthog_environmentshogfunctionsiconretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentshogfunctionsiconsretrieve Read
Environmentshogfunctionsiconsretrieve
- Lua path
app.integrations.posthog.environmentshogfunctionsiconsretrieve- Full name
posthog.posthog_environmentshogfunctionsiconsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentshogfunctionsrearrangepartialupdate Write
Update the execution order of multiple HogFunctions.
- Lua path
app.integrations.posthog.environmentshogfunctionsrearrangepartialupdate- Full name
posthog.posthog_environmentshogfunctionsrearrangepartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsinsightvariableslist Read
Environmentsinsightvariableslist
- Lua path
app.integrations.posthog.environmentsinsightvariableslist- Full name
posthog.posthog_environmentsinsightvariableslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsinsightvariablescreate Write
Environmentsinsightvariablescreate
- Lua path
app.integrations.posthog.environmentsinsightvariablescreate- Full name
posthog.posthog_environmentsinsightvariablescreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsinsightvariablesretrieve Read
Environmentsinsightvariablesretrieve
- Lua path
app.integrations.posthog.environmentsinsightvariablesretrieve- Full name
posthog.posthog_environmentsinsightvariablesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsinsightvariablesupdate Write
Environmentsinsightvariablesupdate
- Lua path
app.integrations.posthog.environmentsinsightvariablesupdate- Full name
posthog.posthog_environmentsinsightvariablesupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsinsightvariablespartialupdate Write
Environmentsinsightvariablespartialupdate
- Lua path
app.integrations.posthog.environmentsinsightvariablespartialupdate- Full name
posthog.posthog_environmentsinsightvariablespartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsinsightvariablesdestroy Write
Environmentsinsightvariablesdestroy
- Lua path
app.integrations.posthog.environmentsinsightvariablesdestroy- Full name
posthog.posthog_environmentsinsightvariablesdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsinsightslist Read
DRF ViewSet mixin that gates coalesced responses behind permission checks. The QueryCoalescingMiddleware attaches cached response data to request.META["coalescedresponse"] for followers. This mixin runs DRF's initial() (auth + permissions + throttling) befo...
- Lua path
app.integrations.posthog.environmentsinsightslist- Full name
posthog.posthog_environmentsinsightslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsinsightscreate Write
DRF ViewSet mixin that gates coalesced responses behind permission checks. The QueryCoalescingMiddleware attaches cached response data to request.META["coalescedresponse"] for followers. This mixin runs DRF's initial() (auth + permissions + throttling) befo...
- Lua path
app.integrations.posthog.environmentsinsightscreate- Full name
posthog.posthog_environmentsinsightscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsinsightssharinglist Read
Environmentsinsightssharinglist
- Lua path
app.integrations.posthog.environmentsinsightssharinglist- Full name
posthog.posthog_environmentsinsightssharinglist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsinsightssharingpasswordscreate Write
Create a new password for the sharing configuration.
- Lua path
app.integrations.posthog.environmentsinsightssharingpasswordscreate- Full name
posthog.posthog_environmentsinsightssharingpasswordscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsinsightssharingpasswordsdestroy Write
Delete a password from the sharing configuration.
- Lua path
app.integrations.posthog.environmentsinsightssharingpasswordsdestroy- Full name
posthog.posthog_environmentsinsightssharingpasswordsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsinsightssharingrefreshcreate Write
Environmentsinsightssharingrefreshcreate
- Lua path
app.integrations.posthog.environmentsinsightssharingrefreshcreate- Full name
posthog.posthog_environmentsinsightssharingrefreshcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsinsightsthresholdslist Read
Environmentsinsightsthresholdslist
- Lua path
app.integrations.posthog.environmentsinsightsthresholdslist- Full name
posthog.posthog_environmentsinsightsthresholdslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsinsightsthresholdsretrieve Read
Environmentsinsightsthresholdsretrieve
- Lua path
app.integrations.posthog.environmentsinsightsthresholdsretrieve- Full name
posthog.posthog_environmentsinsightsthresholdsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsinsightsretrieve Read
DRF ViewSet mixin that gates coalesced responses behind permission checks. The QueryCoalescingMiddleware attaches cached response data to request.META["coalescedresponse"] for followers. This mixin runs DRF's initial() (auth + permissions + throttling) befo...
- Lua path
app.integrations.posthog.environmentsinsightsretrieve- Full name
posthog.posthog_environmentsinsightsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsinsightsupdate Write
DRF ViewSet mixin that gates coalesced responses behind permission checks. The QueryCoalescingMiddleware attaches cached response data to request.META["coalescedresponse"] for followers. This mixin runs DRF's initial() (auth + permissions + throttling) befo...
- Lua path
app.integrations.posthog.environmentsinsightsupdate- Full name
posthog.posthog_environmentsinsightsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsinsightspartialupdate Write
DRF ViewSet mixin that gates coalesced responses behind permission checks. The QueryCoalescingMiddleware attaches cached response data to request.META["coalescedresponse"] for followers. This mixin runs DRF's initial() (auth + permissions + throttling) befo...
- Lua path
app.integrations.posthog.environmentsinsightspartialupdate- Full name
posthog.posthog_environmentsinsightspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsinsightsdestroy Write
Hard delete of this model is not allowed. Use a patch API call to set "deleted" to true
- Lua path
app.integrations.posthog.environmentsinsightsdestroy- Full name
posthog.posthog_environmentsinsightsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsinsightsactivityretrieve Read
Audit trail for a single insight - every change made to it, by whom, and when. Use this when you want the change history of a specific insight; use the project-wide activity endpoint for a broader view.
- Lua path
app.integrations.posthog.environmentsinsightsactivityretrieve- Full name
posthog.posthog_environmentsinsightsactivityretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsinsightsanalyzeretrieve Read
DRF ViewSet mixin that gates coalesced responses behind permission checks. The QueryCoalescingMiddleware attaches cached response data to request.META["coalescedresponse"] for followers. This mixin runs DRF's initial() (auth + permissions + throttling) befo...
- Lua path
app.integrations.posthog.environmentsinsightsanalyzeretrieve- Full name
posthog.posthog_environmentsinsightsanalyzeretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsinsightssuggestionsretrieve Read
DRF ViewSet mixin that gates coalesced responses behind permission checks. The QueryCoalescingMiddleware attaches cached response data to request.META["coalescedresponse"] for followers. This mixin runs DRF's initial() (auth + permissions + throttling) befo...
- Lua path
app.integrations.posthog.environmentsinsightssuggestionsretrieve- Full name
posthog.posthog_environmentsinsightssuggestionsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsinsightssuggestionscreate Write
DRF ViewSet mixin that gates coalesced responses behind permission checks. The QueryCoalescingMiddleware attaches cached response data to request.META["coalescedresponse"] for followers. This mixin runs DRF's initial() (auth + permissions + throttling) befo...
- Lua path
app.integrations.posthog.environmentsinsightssuggestionscreate- Full name
posthog.posthog_environmentsinsightssuggestionscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsinsightsallactivityretrieve Read
Project-wide audit trail across all insights - who created, edited, deleted, or restored insights, what changed (with before/after diffs), and when. Useful for surfacing what people (or agents) have been working on recently.
- Lua path
app.integrations.posthog.environmentsinsightsallactivityretrieve- Full name
posthog.posthog_environmentsinsightsallactivityretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsinsightsbulkupdatetagscreate Write
Bulk update tags on multiple objects. Accepts: - {"ids": [...], "action": "add"|"remove"|"set", "tags": ["tag1", "tag2"]} Actions: - "add": Add tags to existing tags on each object - "remove": Remove specific tags from each object - "set": Replace all tags...
- Lua path
app.integrations.posthog.environmentsinsightsbulkupdatetagscreate- Full name
posthog.posthog_environmentsinsightsbulkupdatetagscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsinsightscancelcreate Write
DRF ViewSet mixin that gates coalesced responses behind permission checks. The QueryCoalescingMiddleware attaches cached response data to request.META["coalescedresponse"] for followers. This mixin runs DRF's initial() (auth + permissions + throttling) befo...
- Lua path
app.integrations.posthog.environmentsinsightscancelcreate- Full name
posthog.posthog_environmentsinsightscancelcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsinsightsgeneratemetadatacreate Write
Generate an AI-suggested name and description for an insight based on its query configuration.
- Lua path
app.integrations.posthog.environmentsinsightsgeneratemetadatacreate- Full name
posthog.posthog_environmentsinsightsgeneratemetadatacreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsinsightsmylastviewedretrieve Read
Returns basic details about the last 5 insights viewed by this user. Most recently viewed first.
- Lua path
app.integrations.posthog.environmentsinsightsmylastviewedretrieve- Full name
posthog.posthog_environmentsinsightsmylastviewedretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsinsightstrendingretrieve Read
Returns insights ranked by view count over the last N days (default 7), highest first. Each result includes the same metadata as the standard insights list, plus a viewcount and up to 3 recent viewers. Useful for surfacing the most-used insights in a project.
- Lua path
app.integrations.posthog.environmentsinsightstrendingretrieve- Full name
posthog.posthog_environmentsinsightstrendingretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsinsightsviewedcreate Write
Update insight view timestamps. Expects: {"insightids": [1, 2, 3, ...]}
- Lua path
app.integrations.posthog.environmentsinsightsviewedcreate- Full name
posthog.posthog_environmentsinsightsviewedcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsintegrationslist Read
Environmentsintegrationslist
- Lua path
app.integrations.posthog.environmentsintegrationslist- Full name
posthog.posthog_environmentsintegrationslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsintegrationscreate Write
Environmentsintegrationscreate
- Lua path
app.integrations.posthog.environmentsintegrationscreate- Full name
posthog.posthog_environmentsintegrationscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsintegrationsretrieve Read
Environmentsintegrationsretrieve
- Lua path
app.integrations.posthog.environmentsintegrationsretrieve- Full name
posthog.posthog_environmentsintegrationsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsintegrationsdestroy Write
Environmentsintegrationsdestroy
- Lua path
app.integrations.posthog.environmentsintegrationsdestroy- Full name
posthog.posthog_environmentsintegrationsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsintegrationsanthropicmanagedagentenvsretrieve Read
Environmentsintegrationsanthropicmanagedagentenvsretrieve
- Lua path
app.integrations.posthog.environmentsintegrationsanthropicmanagedagentenvsretrieve- Full name
posthog.posthog_environmentsintegrationsanthropicmanagedagentenvsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsintegrationsanthropicmanagedagentvaultsretrieve Read
Environmentsintegrationsanthropicmanagedagentvaultsretrieve
- Lua path
app.integrations.posthog.environmentsintegrationsanthropicmanagedagentvaultsretrieve- Full name
posthog.posthog_environmentsintegrationsanthropicmanagedagentvaultsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsintegrationsanthropicmanagedagentsretrieve Read
Environmentsintegrationsanthropicmanagedagentsretrieve
- Lua path
app.integrations.posthog.environmentsintegrationsanthropicmanagedagentsretrieve- Full name
posthog.posthog_environmentsintegrationsanthropicmanagedagentsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsintegrationschannelsretrieve Read
Environmentsintegrationschannelsretrieve
- Lua path
app.integrations.posthog.environmentsintegrationschannelsretrieve- Full name
posthog.posthog_environmentsintegrationschannelsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsintegrationsclickuplistsretrieve Read
Environmentsintegrationsclickuplistsretrieve
- Lua path
app.integrations.posthog.environmentsintegrationsclickuplistsretrieve- Full name
posthog.posthog_environmentsintegrationsclickuplistsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsintegrationsclickupspacesretrieve Read
Environmentsintegrationsclickupspacesretrieve
- Lua path
app.integrations.posthog.environmentsintegrationsclickupspacesretrieve- Full name
posthog.posthog_environmentsintegrationsclickupspacesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsintegrationsclickupworkspacesretrieve Read
Environmentsintegrationsclickupworkspacesretrieve
- Lua path
app.integrations.posthog.environmentsintegrationsclickupworkspacesretrieve- Full name
posthog.posthog_environmentsintegrationsclickupworkspacesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsintegrationsemailpartialupdate Write
Environmentsintegrationsemailpartialupdate
- Lua path
app.integrations.posthog.environmentsintegrationsemailpartialupdate- Full name
posthog.posthog_environmentsintegrationsemailpartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsintegrationsemailverifycreate Write
Environmentsintegrationsemailverifycreate
- Lua path
app.integrations.posthog.environmentsintegrationsemailverifycreate- Full name
posthog.posthog_environmentsintegrationsemailverifycreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsintegrationsgithubbranchesretrieve Read
Environmentsintegrationsgithubbranchesretrieve
- Lua path
app.integrations.posthog.environmentsintegrationsgithubbranchesretrieve- Full name
posthog.posthog_environmentsintegrationsgithubbranchesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsintegrationsgithubreposretrieve Read
Environmentsintegrationsgithubreposretrieve
- Lua path
app.integrations.posthog.environmentsintegrationsgithubreposretrieve- Full name
posthog.posthog_environmentsintegrationsgithubreposretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsintegrationsgithubreposrefreshcreate Write
Environmentsintegrationsgithubreposrefreshcreate
- Lua path
app.integrations.posthog.environmentsintegrationsgithubreposrefreshcreate- Full name
posthog.posthog_environmentsintegrationsgithubreposrefreshcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsintegrationsgoogleaccessibleaccountsretrieve Read
Environmentsintegrationsgoogleaccessibleaccountsretrieve
- Lua path
app.integrations.posthog.environmentsintegrationsgoogleaccessibleaccountsretrieve- Full name
posthog.posthog_environmentsintegrationsgoogleaccessibleaccountsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsintegrationsgoogleconversionactionsretrieve Read
Environmentsintegrationsgoogleconversionactionsretrieve
- Lua path
app.integrations.posthog.environmentsintegrationsgoogleconversionactionsretrieve- Full name
posthog.posthog_environmentsintegrationsgoogleconversionactionsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsintegrationsjiraprojectsretrieve Read
Environmentsintegrationsjiraprojectsretrieve
- Lua path
app.integrations.posthog.environmentsintegrationsjiraprojectsretrieve- Full name
posthog.posthog_environmentsintegrationsjiraprojectsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsintegrationslinearteamsretrieve Read
Environmentsintegrationslinearteamsretrieve
- Lua path
app.integrations.posthog.environmentsintegrationslinearteamsretrieve- Full name
posthog.posthog_environmentsintegrationslinearteamsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsintegrationslinkedinadsaccountsretrieve Read
Environmentsintegrationslinkedinadsaccountsretrieve
- Lua path
app.integrations.posthog.environmentsintegrationslinkedinadsaccountsretrieve- Full name
posthog.posthog_environmentsintegrationslinkedinadsaccountsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsintegrationslinkedinadsconversionrulesretrieve Read
Environmentsintegrationslinkedinadsconversionrulesretrieve
- Lua path
app.integrations.posthog.environmentsintegrationslinkedinadsconversionrulesretrieve- Full name
posthog.posthog_environmentsintegrationslinkedinadsconversionrulesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsintegrationstwiliophonenumbersretrieve Read
Environmentsintegrationstwiliophonenumbersretrieve
- Lua path
app.integrations.posthog.environmentsintegrationstwiliophonenumbersretrieve- Full name
posthog.posthog_environmentsintegrationstwiliophonenumbersretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsintegrationsauthorizeretrieve Read
Environmentsintegrationsauthorizeretrieve
- Lua path
app.integrations.posthog.environmentsintegrationsauthorizeretrieve- Full name
posthog.posthog_environmentsintegrationsauthorizeretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsintegrationsdomainconnectapplyurlcreate Write
Unified endpoint for generating Domain Connect apply URLs. Accepts a context ("email" or "proxy") and the relevant resource ID. The backend resolves the domain, template variables, and service ID based on context, then builds the signed apply URL.
- Lua path
app.integrations.posthog.environmentsintegrationsdomainconnectapplyurlcreate- Full name
posthog.posthog_environmentsintegrationsdomainconnectapplyurlcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsintegrationsdomainconnectcheckretrieve Read
Environmentsintegrationsdomainconnectcheckretrieve
- Lua path
app.integrations.posthog.environmentsintegrationsdomainconnectcheckretrieve- Full name
posthog.posthog_environmentsintegrationsdomainconnectcheckretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsintegrationsgithublinkexistingcreate Write
Reuse a GitHub installation already linked to a sibling team in the same organization.
- Lua path
app.integrations.posthog.environmentsintegrationsgithublinkexistingcreate- Full name
posthog.posthog_environmentsintegrationsgithublinkexistingcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsintegrationsgithuboauthauthorizecreate Write
Mint a User OAuth URL to bootstrap a fresh code when the install flow returns without one.
- Lua path
app.integrations.posthog.environmentsintegrationsgithuboauthauthorizecreate- Full name
posthog.posthog_environmentsintegrationsgithuboauthauthorizecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentslogsalertslist Read
Environmentslogsalertslist
- Lua path
app.integrations.posthog.environmentslogsalertslist- Full name
posthog.posthog_environmentslogsalertslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentslogsalertscreate Write
Environmentslogsalertscreate
- Lua path
app.integrations.posthog.environmentslogsalertscreate- Full name
posthog.posthog_environmentslogsalertscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentslogsalertsretrieve Read
Environmentslogsalertsretrieve
- Lua path
app.integrations.posthog.environmentslogsalertsretrieve- Full name
posthog.posthog_environmentslogsalertsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentslogsalertsupdate Write
Environmentslogsalertsupdate
- Lua path
app.integrations.posthog.environmentslogsalertsupdate- Full name
posthog.posthog_environmentslogsalertsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentslogsalertspartialupdate Write
Environmentslogsalertspartialupdate
- Lua path
app.integrations.posthog.environmentslogsalertspartialupdate- Full name
posthog.posthog_environmentslogsalertspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentslogsalertsdestroy Write
Environmentslogsalertsdestroy
- Lua path
app.integrations.posthog.environmentslogsalertsdestroy- Full name
posthog.posthog_environmentslogsalertsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentslogsalertsdestinationscreate Write
Create a notification destination for this alert. One HogFunction is created per alert event kind (firing, resolved, ...) atomically.
- Lua path
app.integrations.posthog.environmentslogsalertsdestinationscreate- Full name
posthog.posthog_environmentslogsalertsdestinationscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentslogsalertsdestinationsdeletecreate Write
Delete a notification destination by deleting its HogFunction group atomically.
- Lua path
app.integrations.posthog.environmentslogsalertsdestinationsdeletecreate- Full name
posthog.posthog_environmentslogsalertsdestinationsdeletecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentslogsalertseventslist Read
Paginated event history for this alert, newest first. Returns state transitions, errored checks, and user-initiated control-plane rows (reset, enable/disable, snooze/unsnooze, threshold change) - quiet no-op check rows (where state didn't change and there w...
- Lua path
app.integrations.posthog.environmentslogsalertseventslist- Full name
posthog.posthog_environmentslogsalertseventslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentslogsalertsresetcreate Write
Reset a broken alert. Clears the consecutive-failure counter and schedules an immediate recheck.
- Lua path
app.integrations.posthog.environmentslogsalertsresetcreate- Full name
posthog.posthog_environmentslogsalertsresetcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentslogsalertssimulatecreate Write
Simulate a logs alert on historical data using the full state machine. Read-only - no alert check records are created.
- Lua path
app.integrations.posthog.environmentslogsalertssimulatecreate- Full name
posthog.posthog_environmentslogsalertssimulatecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentslogsattributesretrieve Read
Environmentslogsattributesretrieve
- Lua path
app.integrations.posthog.environmentslogsattributesretrieve- Full name
posthog.posthog_environmentslogsattributesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentslogscountcreate Write
Environmentslogscountcreate
- Lua path
app.integrations.posthog.environmentslogscountcreate- Full name
posthog.posthog_environmentslogscountcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentslogscountrangescreate Write
Environmentslogscountrangescreate
- Lua path
app.integrations.posthog.environmentslogscountrangescreate- Full name
posthog.posthog_environmentslogscountrangescreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentslogsexportcreate Write
Environmentslogsexportcreate
- Lua path
app.integrations.posthog.environmentslogsexportcreate- Full name
posthog.posthog_environmentslogsexportcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentslogshaslogsretrieve Read
Environmentslogshaslogsretrieve
- Lua path
app.integrations.posthog.environmentslogshaslogsretrieve- Full name
posthog.posthog_environmentslogshaslogsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentslogsquerycreate Write
Environmentslogsquerycreate
- Lua path
app.integrations.posthog.environmentslogsquerycreate- Full name
posthog.posthog_environmentslogsquerycreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentslogssamplingruleslist Read
Environmentslogssamplingruleslist
- Lua path
app.integrations.posthog.environmentslogssamplingruleslist- Full name
posthog.posthog_environmentslogssamplingruleslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentslogssamplingrulescreate Write
Environmentslogssamplingrulescreate
- Lua path
app.integrations.posthog.environmentslogssamplingrulescreate- Full name
posthog.posthog_environmentslogssamplingrulescreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentslogssamplingrulesretrieve Read
Environmentslogssamplingrulesretrieve
- Lua path
app.integrations.posthog.environmentslogssamplingrulesretrieve- Full name
posthog.posthog_environmentslogssamplingrulesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentslogssamplingrulesupdate Write
Environmentslogssamplingrulesupdate
- Lua path
app.integrations.posthog.environmentslogssamplingrulesupdate- Full name
posthog.posthog_environmentslogssamplingrulesupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentslogssamplingrulespartialupdate Write
Environmentslogssamplingrulespartialupdate
- Lua path
app.integrations.posthog.environmentslogssamplingrulespartialupdate- Full name
posthog.posthog_environmentslogssamplingrulespartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentslogssamplingrulesdestroy Write
Environmentslogssamplingrulesdestroy
- Lua path
app.integrations.posthog.environmentslogssamplingrulesdestroy- Full name
posthog.posthog_environmentslogssamplingrulesdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentslogssamplingrulessimulatecreate Write
Dry-run estimate for how much volume this rule would remove (placeholder response until CH-backed simulation is wired).
- Lua path
app.integrations.posthog.environmentslogssamplingrulessimulatecreate- Full name
posthog.posthog_environmentslogssamplingrulessimulatecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentslogssamplingrulesreordercreate Write
Atomically reassign priorities so the given ID order maps to ascending priorities (0..n-1).
- Lua path
app.integrations.posthog.environmentslogssamplingrulesreordercreate- Full name
posthog.posthog_environmentslogssamplingrulesreordercreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentslogsservicescreate Write
Environmentslogsservicescreate
- Lua path
app.integrations.posthog.environmentslogsservicescreate- Full name
posthog.posthog_environmentslogsservicescreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentslogssparklinecreate Write
Environmentslogssparklinecreate
- Lua path
app.integrations.posthog.environmentslogssparklinecreate- Full name
posthog.posthog_environmentslogssparklinecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentslogsvaluesretrieve Read
Environmentslogsvaluesretrieve
- Lua path
app.integrations.posthog.environmentslogsvaluesretrieve- Full name
posthog.posthog_environmentslogsvaluesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentspersistedfolderlist Read
Environmentspersistedfolderlist
- Lua path
app.integrations.posthog.environmentspersistedfolderlist- Full name
posthog.posthog_environmentspersistedfolderlist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentspersistedfoldercreate Write
Environmentspersistedfoldercreate
- Lua path
app.integrations.posthog.environmentspersistedfoldercreate- Full name
posthog.posthog_environmentspersistedfoldercreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentspersistedfolderretrieve Read
Environmentspersistedfolderretrieve
- Lua path
app.integrations.posthog.environmentspersistedfolderretrieve- Full name
posthog.posthog_environmentspersistedfolderretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentspersistedfolderupdate Write
Environmentspersistedfolderupdate
- Lua path
app.integrations.posthog.environmentspersistedfolderupdate- Full name
posthog.posthog_environmentspersistedfolderupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentspersistedfolderpartialupdate Write
Environmentspersistedfolderpartialupdate
- Lua path
app.integrations.posthog.environmentspersistedfolderpartialupdate- Full name
posthog.posthog_environmentspersistedfolderpartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentspersistedfolderdestroy Write
Environmentspersistedfolderdestroy
- Lua path
app.integrations.posthog.environmentspersistedfolderdestroy- Full name
posthog.posthog_environmentspersistedfolderdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentspersonslist Read
This endpoint is meant for reading and deleting persons. To create or update persons, we recommend using the [capture API](https://posthog.com/docs/api/capture), the $set and $unset [properties](https://posthog.com/docs/product-analytics/user-properties), o...
- Lua path
app.integrations.posthog.environmentspersonslist- Full name
posthog.posthog_environmentspersonslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentspersonsretrieve Read
This endpoint is meant for reading and deleting persons. To create or update persons, we recommend using the [capture API](https://posthog.com/docs/api/capture), the $set and $unset [properties](https://posthog.com/docs/product-analytics/user-properties), o...
- Lua path
app.integrations.posthog.environmentspersonsretrieve- Full name
posthog.posthog_environmentspersonsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentspersonsupdate Write
Only for setting properties on the person. "properties" from the request data will be updated via a "$set" event. This means that only the properties listed will be updated, but other properties won't be removed nor updated. If you would like to remove a pr...
- Lua path
app.integrations.posthog.environmentspersonsupdate- Full name
posthog.posthog_environmentspersonsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentspersonspartialupdate Write
This endpoint is meant for reading and deleting persons. To create or update persons, we recommend using the [capture API](https://posthog.com/docs/api/capture), the $set and $unset [properties](https://posthog.com/docs/product-analytics/user-properties), o...
- Lua path
app.integrations.posthog.environmentspersonspartialupdate- Full name
posthog.posthog_environmentspersonspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentspersonsactivityretrieve Read
This endpoint is meant for reading and deleting persons. To create or update persons, we recommend using the [capture API](https://posthog.com/docs/api/capture), the $set and $unset [properties](https://posthog.com/docs/product-analytics/user-properties), o...
- Lua path
app.integrations.posthog.environmentspersonsactivityretrieve- Full name
posthog.posthog_environmentspersonsactivityretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentspersonsdeletepropertycreate Write
This endpoint is meant for reading and deleting persons. To create or update persons, we recommend using the [capture API](https://posthog.com/docs/api/capture), the $set and $unset [properties](https://posthog.com/docs/product-analytics/user-properties), o...
- Lua path
app.integrations.posthog.environmentspersonsdeletepropertycreate- Full name
posthog.posthog_environmentspersonsdeletepropertycreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentspersonspropertiestimelineretrieve Read
This endpoint is meant for reading and deleting persons. To create or update persons, we recommend using the [capture API](https://posthog.com/docs/api/capture), the $set and $unset [properties](https://posthog.com/docs/product-analytics/user-properties), o...
- Lua path
app.integrations.posthog.environmentspersonspropertiestimelineretrieve- Full name
posthog.posthog_environmentspersonspropertiestimelineretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentspersonssplitcreate Write
This endpoint is meant for reading and deleting persons. To create or update persons, we recommend using the [capture API](https://posthog.com/docs/api/capture), the $set and $unset [properties](https://posthog.com/docs/product-analytics/user-properties), o...
- Lua path
app.integrations.posthog.environmentspersonssplitcreate- Full name
posthog.posthog_environmentspersonssplitcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentspersonsupdatepropertycreate Write
This endpoint is meant for reading and deleting persons. To create or update persons, we recommend using the [capture API](https://posthog.com/docs/api/capture), the $set and $unset [properties](https://posthog.com/docs/product-analytics/user-properties), o...
- Lua path
app.integrations.posthog.environmentspersonsupdatepropertycreate- Full name
posthog.posthog_environmentspersonsupdatepropertycreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentspersonsallactivityretrieve Read
This endpoint is meant for reading and deleting persons. To create or update persons, we recommend using the [capture API](https://posthog.com/docs/api/capture), the $set and $unset [properties](https://posthog.com/docs/product-analytics/user-properties), o...
- Lua path
app.integrations.posthog.environmentspersonsallactivityretrieve- Full name
posthog.posthog_environmentspersonsallactivityretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentspersonsbatchbydistinctidscreate Write
This endpoint is meant for reading and deleting persons. To create or update persons, we recommend using the [capture API](https://posthog.com/docs/api/capture), the $set and $unset [properties](https://posthog.com/docs/product-analytics/user-properties), o...
- Lua path
app.integrations.posthog.environmentspersonsbatchbydistinctidscreate- Full name
posthog.posthog_environmentspersonsbatchbydistinctidscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentspersonsbatchbyuuidscreate Write
This endpoint is meant for reading and deleting persons. To create or update persons, we recommend using the [capture API](https://posthog.com/docs/api/capture), the $set and $unset [properties](https://posthog.com/docs/product-analytics/user-properties), o...
- Lua path
app.integrations.posthog.environmentspersonsbatchbyuuidscreate- Full name
posthog.posthog_environmentspersonsbatchbyuuidscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentspersonsbulkdeletecreate Write
This endpoint allows you to bulk delete persons, either by the PostHog person IDs or by distinct IDs. You can pass in a maximum of 1000 IDs per call. Only events captured before the request will be deleted.
- Lua path
app.integrations.posthog.environmentspersonsbulkdeletecreate- Full name
posthog.posthog_environmentspersonsbulkdeletecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentspersonscohortsretrieve Read
This endpoint is meant for reading and deleting persons. To create or update persons, we recommend using the [capture API](https://posthog.com/docs/api/capture), the $set and $unset [properties](https://posthog.com/docs/product-analytics/user-properties), o...
- Lua path
app.integrations.posthog.environmentspersonscohortsretrieve- Full name
posthog.posthog_environmentspersonscohortsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentspersonsdeletionstatuslist Read
List the status of queued event deletions for persons. When you delete a person with deleteevents=true, an async deletion is queued. Use this endpoint to check whether those deletions are still pending or have been completed.
- Lua path
app.integrations.posthog.environmentspersonsdeletionstatuslist- Full name
posthog.posthog_environmentspersonsdeletionstatuslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentspersonsfunnelretrieve Read
This endpoint is meant for reading and deleting persons. To create or update persons, we recommend using the [capture API](https://posthog.com/docs/api/capture), the $set and $unset [properties](https://posthog.com/docs/product-analytics/user-properties), o...
- Lua path
app.integrations.posthog.environmentspersonsfunnelretrieve- Full name
posthog.posthog_environmentspersonsfunnelretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentspersonsfunnelcreate Write
This endpoint is meant for reading and deleting persons. To create or update persons, we recommend using the [capture API](https://posthog.com/docs/api/capture), the $set and $unset [properties](https://posthog.com/docs/product-analytics/user-properties), o...
- Lua path
app.integrations.posthog.environmentspersonsfunnelcreate- Full name
posthog.posthog_environmentspersonsfunnelcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentspersonsfunnelcorrelationretrieve Read
This endpoint is meant for reading and deleting persons. To create or update persons, we recommend using the [capture API](https://posthog.com/docs/api/capture), the $set and $unset [properties](https://posthog.com/docs/product-analytics/user-properties), o...
- Lua path
app.integrations.posthog.environmentspersonsfunnelcorrelationretrieve- Full name
posthog.posthog_environmentspersonsfunnelcorrelationretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentspersonsfunnelcorrelationcreate Write
This endpoint is meant for reading and deleting persons. To create or update persons, we recommend using the [capture API](https://posthog.com/docs/api/capture), the $set and $unset [properties](https://posthog.com/docs/product-analytics/user-properties), o...
- Lua path
app.integrations.posthog.environmentspersonsfunnelcorrelationcreate- Full name
posthog.posthog_environmentspersonsfunnelcorrelationcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentspersonslifecycleretrieve Read
This endpoint is meant for reading and deleting persons. To create or update persons, we recommend using the [capture API](https://posthog.com/docs/api/capture), the $set and $unset [properties](https://posthog.com/docs/product-analytics/user-properties), o...
- Lua path
app.integrations.posthog.environmentspersonslifecycleretrieve- Full name
posthog.posthog_environmentspersonslifecycleretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentspersonspropertiesattimeretrieve Read
Get person properties as they existed at a specific point in time. This endpoint reconstructs person properties by querying ClickHouse events for $set and $setonce operations up to the specified timestamp. Query parameters: - distinctid: The distinctid of t...
- Lua path
app.integrations.posthog.environmentspersonspropertiesattimeretrieve- Full name
posthog.posthog_environmentspersonspropertiesattimeretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentspersonsresetpersondistinctidcreate Write
Reset a distinctid for a deleted person. This allows the distinctid to be used again.
- Lua path
app.integrations.posthog.environmentspersonsresetpersondistinctidcreate- Full name
posthog.posthog_environmentspersonsresetpersondistinctidcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentspersonstrendsretrieve Read
This endpoint is meant for reading and deleting persons. To create or update persons, we recommend using the [capture API](https://posthog.com/docs/api/capture), the $set and $unset [properties](https://posthog.com/docs/product-analytics/user-properties), o...
- Lua path
app.integrations.posthog.environmentspersonstrendsretrieve- Full name
posthog.posthog_environmentspersonstrendsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentspersonsvaluesretrieve Read
This endpoint is meant for reading and deleting persons. To create or update persons, we recommend using the [capture API](https://posthog.com/docs/api/capture), the $set and $unset [properties](https://posthog.com/docs/product-analytics/user-properties), o...
- Lua path
app.integrations.posthog.environmentspersonsvaluesretrieve- Full name
posthog.posthog_environmentspersonsvaluesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentspluginconfigslogslist Read
Environmentspluginconfigslogslist
- Lua path
app.integrations.posthog.environmentspluginconfigslogslist- Full name
posthog.posthog_environmentspluginconfigslogslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsprojectsecretapikeyslist Read
Environmentsprojectsecretapikeyslist
- Lua path
app.integrations.posthog.environmentsprojectsecretapikeyslist- Full name
posthog.posthog_environmentsprojectsecretapikeyslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsprojectsecretapikeyscreate Write
Environmentsprojectsecretapikeyscreate
- Lua path
app.integrations.posthog.environmentsprojectsecretapikeyscreate- Full name
posthog.posthog_environmentsprojectsecretapikeyscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsprojectsecretapikeysretrieve Read
Environmentsprojectsecretapikeysretrieve
- Lua path
app.integrations.posthog.environmentsprojectsecretapikeysretrieve- Full name
posthog.posthog_environmentsprojectsecretapikeysretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsprojectsecretapikeysupdate Write
Environmentsprojectsecretapikeysupdate
- Lua path
app.integrations.posthog.environmentsprojectsecretapikeysupdate- Full name
posthog.posthog_environmentsprojectsecretapikeysupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsprojectsecretapikeyspartialupdate Write
Environmentsprojectsecretapikeyspartialupdate
- Lua path
app.integrations.posthog.environmentsprojectsecretapikeyspartialupdate- Full name
posthog.posthog_environmentsprojectsecretapikeyspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsprojectsecretapikeysdestroy Write
Environmentsprojectsecretapikeysdestroy
- Lua path
app.integrations.posthog.environmentsprojectsecretapikeysdestroy- Full name
posthog.posthog_environmentsprojectsecretapikeysdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsprojectsecretapikeysrollcreate Write
Roll a project secret API key
- Lua path
app.integrations.posthog.environmentsprojectsecretapikeysrollcreate- Full name
posthog.posthog_environmentsprojectsecretapikeysrollcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsquerycreate Write
DRF ViewSet mixin that gates coalesced responses behind permission checks. The QueryCoalescingMiddleware attaches cached response data to request.META["coalescedresponse"] for followers. This mixin runs DRF's initial() (auth + permissions + throttling) befo...
- Lua path
app.integrations.posthog.environmentsquerycreate- Full name
posthog.posthog_environmentsquerycreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsqueryretrieve Read
(Experimental)
- Lua path
app.integrations.posthog.environmentsqueryretrieve- Full name
posthog.posthog_environmentsqueryretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsquerydestroy Write
(Experimental)
- Lua path
app.integrations.posthog.environmentsquerydestroy- Full name
posthog.posthog_environmentsquerydestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsquerylogretrieve Read
Get query log details from querylogarchive table for a specific queryid, the query must have been issued in last 24 hours.
- Lua path
app.integrations.posthog.environmentsquerylogretrieve- Full name
posthog.posthog_environmentsquerylogretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsquerycreatewithkind Write
DRF ViewSet mixin that gates coalesced responses behind permission checks. The QueryCoalescingMiddleware attaches cached response data to request.META["coalescedresponse"] for followers. This mixin runs DRF's initial() (auth + permissions + throttling) befo...
- Lua path
app.integrations.posthog.environmentsquerycreatewithkind- Full name
posthog.posthog_environmentsquerycreatewithkind
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsquerycheckauthforasynccreate Write
DRF ViewSet mixin that gates coalesced responses behind permission checks. The QueryCoalescingMiddleware attaches cached response data to request.META["coalescedresponse"] for followers. This mixin runs DRF's initial() (auth + permissions + throttling) befo...
- Lua path
app.integrations.posthog.environmentsquerycheckauthforasynccreate- Full name
posthog.posthog_environmentsquerycheckauthforasynccreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsquerydraftsqlretrieve Read
DRF ViewSet mixin that gates coalesced responses behind permission checks. The QueryCoalescingMiddleware attaches cached response data to request.META["coalescedresponse"] for followers. This mixin runs DRF's initial() (auth + permissions + throttling) befo...
- Lua path
app.integrations.posthog.environmentsquerydraftsqlretrieve- Full name
posthog.posthog_environmentsquerydraftsqlretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsqueryupgradecreate Write
Upgrades a query without executing it. Returns a query with all nodes migrated to the latest version.
- Lua path
app.integrations.posthog.environmentsqueryupgradecreate- Full name
posthog.posthog_environmentsqueryupgradecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentssavedlist Read
Environmentssavedlist
- Lua path
app.integrations.posthog.environmentssavedlist- Full name
posthog.posthog_environmentssavedlist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentssavedcreate Write
Environmentssavedcreate
- Lua path
app.integrations.posthog.environmentssavedcreate- Full name
posthog.posthog_environmentssavedcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentssavedretrieve Read
Environmentssavedretrieve
- Lua path
app.integrations.posthog.environmentssavedretrieve- Full name
posthog.posthog_environmentssavedretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentssavedpartialupdate Write
Environmentssavedpartialupdate
- Lua path
app.integrations.posthog.environmentssavedpartialupdate- Full name
posthog.posthog_environmentssavedpartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentssaveddestroy Write
Hard delete of this model is not allowed. Use a patch API call to set "deleted" to true
- Lua path
app.integrations.posthog.environmentssaveddestroy- Full name
posthog.posthog_environmentssaveddestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentssavedregeneratecreate Write
Environmentssavedregeneratecreate
- Lua path
app.integrations.posthog.environmentssavedregeneratecreate- Full name
posthog.posthog_environmentssavedregeneratecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentssessionrecordingplaylistslist Read
Override list to include synthetic playlists
- Lua path
app.integrations.posthog.environmentssessionrecordingplaylistslist- Full name
posthog.posthog_environmentssessionrecordingplaylistslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentssessionrecordingplaylistscreate Write
Environmentssessionrecordingplaylistscreate
- Lua path
app.integrations.posthog.environmentssessionrecordingplaylistscreate- Full name
posthog.posthog_environmentssessionrecordingplaylistscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentssessionrecordingplaylistsretrieve Read
Environmentssessionrecordingplaylistsretrieve
- Lua path
app.integrations.posthog.environmentssessionrecordingplaylistsretrieve- Full name
posthog.posthog_environmentssessionrecordingplaylistsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentssessionrecordingplaylistsupdate Write
Environmentssessionrecordingplaylistsupdate
- Lua path
app.integrations.posthog.environmentssessionrecordingplaylistsupdate- Full name
posthog.posthog_environmentssessionrecordingplaylistsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentssessionrecordingplaylistspartialupdate Write
Environmentssessionrecordingplaylistspartialupdate
- Lua path
app.integrations.posthog.environmentssessionrecordingplaylistspartialupdate- Full name
posthog.posthog_environmentssessionrecordingplaylistspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentssessionrecordingplaylistsdestroy Write
Hard delete of this model is not allowed. Use a patch API call to set "deleted" to true
- Lua path
app.integrations.posthog.environmentssessionrecordingplaylistsdestroy- Full name
posthog.posthog_environmentssessionrecordingplaylistsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentssessionrecordingplaylistsrecordingsretrieve Read
Environmentssessionrecordingplaylistsrecordingsretrieve
- Lua path
app.integrations.posthog.environmentssessionrecordingplaylistsrecordingsretrieve- Full name
posthog.posthog_environmentssessionrecordingplaylistsrecordingsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentssessionrecordingplaylistsrecordingscreate Write
Environmentssessionrecordingplaylistsrecordingscreate
- Lua path
app.integrations.posthog.environmentssessionrecordingplaylistsrecordingscreate- Full name
posthog.posthog_environmentssessionrecordingplaylistsrecordingscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentssessionrecordingplaylistsrecordingsdestroy Write
Environmentssessionrecordingplaylistsrecordingsdestroy
- Lua path
app.integrations.posthog.environmentssessionrecordingplaylistsrecordingsdestroy- Full name
posthog.posthog_environmentssessionrecordingplaylistsrecordingsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentssessionrecordingslist Read
Environmentssessionrecordingslist
- Lua path
app.integrations.posthog.environmentssessionrecordingslist- Full name
posthog.posthog_environmentssessionrecordingslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentssessionrecordingsretrieve Read
Environmentssessionrecordingsretrieve
- Lua path
app.integrations.posthog.environmentssessionrecordingsretrieve- Full name
posthog.posthog_environmentssessionrecordingsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentssessionrecordingsupdate Write
Environmentssessionrecordingsupdate
- Lua path
app.integrations.posthog.environmentssessionrecordingsupdate- Full name
posthog.posthog_environmentssessionrecordingsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentssessionrecordingspartialupdate Write
Environmentssessionrecordingspartialupdate
- Lua path
app.integrations.posthog.environmentssessionrecordingspartialupdate- Full name
posthog.posthog_environmentssessionrecordingspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentssessionrecordingsdestroy Write
Environmentssessionrecordingsdestroy
- Lua path
app.integrations.posthog.environmentssessionrecordingsdestroy- Full name
posthog.posthog_environmentssessionrecordingsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentssessionrecordingssharinglist Read
Environmentssessionrecordingssharinglist
- Lua path
app.integrations.posthog.environmentssessionrecordingssharinglist- Full name
posthog.posthog_environmentssessionrecordingssharinglist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentssessionrecordingssharingpasswordscreate Write
Create a new password for the sharing configuration.
- Lua path
app.integrations.posthog.environmentssessionrecordingssharingpasswordscreate- Full name
posthog.posthog_environmentssessionrecordingssharingpasswordscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentssessionrecordingssharingpasswordsdestroy Write
Delete a password from the sharing configuration.
- Lua path
app.integrations.posthog.environmentssessionrecordingssharingpasswordsdestroy- Full name
posthog.posthog_environmentssessionrecordingssharingpasswordsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentssessionrecordingssharingrefreshcreate Write
Environmentssessionrecordingssharingrefreshcreate
- Lua path
app.integrations.posthog.environmentssessionrecordingssharingrefreshcreate- Full name
posthog.posthog_environmentssessionrecordingssharingrefreshcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentssessionspropertydefinitionsretrieve Read
Environmentssessionspropertydefinitionsretrieve
- Lua path
app.integrations.posthog.environmentssessionspropertydefinitionsretrieve- Full name
posthog.posthog_environmentssessionspropertydefinitionsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentssessionsvaluesretrieve Read
Environmentssessionsvaluesretrieve
- Lua path
app.integrations.posthog.environmentssessionsvaluesretrieve- Full name
posthog.posthog_environmentssessionsvaluesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentssubscriptionslist Read
Environmentssubscriptionslist
- Lua path
app.integrations.posthog.environmentssubscriptionslist- Full name
posthog.posthog_environmentssubscriptionslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentssubscriptionscreate Write
Environmentssubscriptionscreate
- Lua path
app.integrations.posthog.environmentssubscriptionscreate- Full name
posthog.posthog_environmentssubscriptionscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentssubscriptionsretrieve Read
Environmentssubscriptionsretrieve
- Lua path
app.integrations.posthog.environmentssubscriptionsretrieve- Full name
posthog.posthog_environmentssubscriptionsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentssubscriptionsupdate Write
Environmentssubscriptionsupdate
- Lua path
app.integrations.posthog.environmentssubscriptionsupdate- Full name
posthog.posthog_environmentssubscriptionsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentssubscriptionspartialupdate Write
Environmentssubscriptionspartialupdate
- Lua path
app.integrations.posthog.environmentssubscriptionspartialupdate- Full name
posthog.posthog_environmentssubscriptionspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentssubscriptionsdestroy Write
Hard delete of this model is not allowed. Use a patch API call to set "deleted" to true
- Lua path
app.integrations.posthog.environmentssubscriptionsdestroy- Full name
posthog.posthog_environmentssubscriptionsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentssubscriptionstestdeliverycreate Write
Environmentssubscriptionstestdeliverycreate
- Lua path
app.integrations.posthog.environmentssubscriptionstestdeliverycreate- Full name
posthog.posthog_environmentssubscriptionstestdeliverycreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentssubscriptionssummaryquotaretrieve Read
Environmentssubscriptionssummaryquotaretrieve
- Lua path
app.integrations.posthog.environmentssubscriptionssummaryquotaretrieve- Full name
posthog.posthog_environmentssubscriptionssummaryquotaretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentswarehousesavedquerieslist Read
Create, Read, Update and Delete Warehouse Tables.
- Lua path
app.integrations.posthog.environmentswarehousesavedquerieslist- Full name
posthog.posthog_environmentswarehousesavedquerieslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentswarehousesavedqueriescreate Write
Create, Read, Update and Delete Warehouse Tables.
- Lua path
app.integrations.posthog.environmentswarehousesavedqueriescreate- Full name
posthog.posthog_environmentswarehousesavedqueriescreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentswarehousesavedqueriesretrieve Read
Create, Read, Update and Delete Warehouse Tables.
- Lua path
app.integrations.posthog.environmentswarehousesavedqueriesretrieve- Full name
posthog.posthog_environmentswarehousesavedqueriesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentswarehousesavedqueriesupdate Write
Create, Read, Update and Delete Warehouse Tables.
- Lua path
app.integrations.posthog.environmentswarehousesavedqueriesupdate- Full name
posthog.posthog_environmentswarehousesavedqueriesupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentswarehousesavedqueriespartialupdate Write
Create, Read, Update and Delete Warehouse Tables.
- Lua path
app.integrations.posthog.environmentswarehousesavedqueriespartialupdate- Full name
posthog.posthog_environmentswarehousesavedqueriespartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentswarehousesavedqueriesdestroy Write
Create, Read, Update and Delete Warehouse Tables.
- Lua path
app.integrations.posthog.environmentswarehousesavedqueriesdestroy- Full name
posthog.posthog_environmentswarehousesavedqueriesdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentswarehousesavedqueriesactivityretrieve Read
Create, Read, Update and Delete Warehouse Tables.
- Lua path
app.integrations.posthog.environmentswarehousesavedqueriesactivityretrieve- Full name
posthog.posthog_environmentswarehousesavedqueriesactivityretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentswarehousesavedqueriesancestorscreate Write
Return the ancestors of this saved query. By default, we return the immediate parents. The level parameter can be used to look further back into the ancestor tree. If level overshoots (i.e. points to only ancestors beyond the root), we return an empty list.
- Lua path
app.integrations.posthog.environmentswarehousesavedqueriesancestorscreate- Full name
posthog.posthog_environmentswarehousesavedqueriesancestorscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentswarehousesavedqueriescancelcreate Write
Cancel a running saved query workflow.
- Lua path
app.integrations.posthog.environmentswarehousesavedqueriescancelcreate- Full name
posthog.posthog_environmentswarehousesavedqueriescancelcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentswarehousesavedqueriesdependenciesretrieve Read
Return the count of immediate upstream and downstream dependencies for this saved query.
- Lua path
app.integrations.posthog.environmentswarehousesavedqueriesdependenciesretrieve- Full name
posthog.posthog_environmentswarehousesavedqueriesdependenciesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentswarehousesavedqueriesdescendantscreate Write
Return the descendants of this saved query. By default, we return the immediate children. The level parameter can be used to look further ahead into the descendants tree. If level overshoots (i.e. points to only descendants further than a leaf), we return a...
- Lua path
app.integrations.posthog.environmentswarehousesavedqueriesdescendantscreate- Full name
posthog.posthog_environmentswarehousesavedqueriesdescendantscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentswarehousesavedqueriesmaterializecreate Write
Enable materialization for this saved query with a 24-hour sync frequency.
- Lua path
app.integrations.posthog.environmentswarehousesavedqueriesmaterializecreate- Full name
posthog.posthog_environmentswarehousesavedqueriesmaterializecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentswarehousesavedqueriesrevertmaterializationcreate Write
Undo materialization, revert back to the original view. (i.e. delete the materialized table and the schedule)
- Lua path
app.integrations.posthog.environmentswarehousesavedqueriesrevertmaterializationcreate- Full name
posthog.posthog_environmentswarehousesavedqueriesrevertmaterializationcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentswarehousesavedqueriesruncreate Write
Run this saved query.
- Lua path
app.integrations.posthog.environmentswarehousesavedqueriesruncreate- Full name
posthog.posthog_environmentswarehousesavedqueriesruncreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentswarehousesavedqueriesrunhistoryretrieve Read
Return the recent run history (up to 5 most recent) for this materialized view.
- Lua path
app.integrations.posthog.environmentswarehousesavedqueriesrunhistoryretrieve- Full name
posthog.posthog_environmentswarehousesavedqueriesrunhistoryretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentswarehousesavedqueriesresumeschedulescreate Write
Resume paused materialization schedules for multiple matviews. Accepts a list of view IDs in the request body: {"viewids": ["id1", "id2", ...]} This endpoint is idempotent - calling it on already running or non-existent schedules is safe.
- Lua path
app.integrations.posthog.environmentswarehousesavedqueriesresumeschedulescreate- Full name
posthog.posthog_environmentswarehousesavedqueriesresumeschedulescreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentswarehousesavedqueryfolderslist Read
Environmentswarehousesavedqueryfolderslist
- Lua path
app.integrations.posthog.environmentswarehousesavedqueryfolderslist- Full name
posthog.posthog_environmentswarehousesavedqueryfolderslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentswarehousesavedqueryfolderscreate Write
Environmentswarehousesavedqueryfolderscreate
- Lua path
app.integrations.posthog.environmentswarehousesavedqueryfolderscreate- Full name
posthog.posthog_environmentswarehousesavedqueryfolderscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentswarehousesavedqueryfoldersretrieve Read
Environmentswarehousesavedqueryfoldersretrieve
- Lua path
app.integrations.posthog.environmentswarehousesavedqueryfoldersretrieve- Full name
posthog.posthog_environmentswarehousesavedqueryfoldersretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentswarehousesavedqueryfolderspartialupdate Write
Environmentswarehousesavedqueryfolderspartialupdate
- Lua path
app.integrations.posthog.environmentswarehousesavedqueryfolderspartialupdate- Full name
posthog.posthog_environmentswarehousesavedqueryfolderspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentswarehousesavedqueryfoldersdestroy Write
Environmentswarehousesavedqueryfoldersdestroy
- Lua path
app.integrations.posthog.environmentswarehousesavedqueryfoldersdestroy- Full name
posthog.posthog_environmentswarehousesavedqueryfoldersdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentswarehousetableslist Read
Create, Read, Update and Delete Warehouse Tables.
- Lua path
app.integrations.posthog.environmentswarehousetableslist- Full name
posthog.posthog_environmentswarehousetableslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentswarehousetablescreate Write
Create, Read, Update and Delete Warehouse Tables.
- Lua path
app.integrations.posthog.environmentswarehousetablescreate- Full name
posthog.posthog_environmentswarehousetablescreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentswarehousetablesretrieve Read
Create, Read, Update and Delete Warehouse Tables.
- Lua path
app.integrations.posthog.environmentswarehousetablesretrieve- Full name
posthog.posthog_environmentswarehousetablesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentswarehousetablesupdate Write
Create, Read, Update and Delete Warehouse Tables.
- Lua path
app.integrations.posthog.environmentswarehousetablesupdate- Full name
posthog.posthog_environmentswarehousetablesupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentswarehousetablespartialupdate Write
Create, Read, Update and Delete Warehouse Tables.
- Lua path
app.integrations.posthog.environmentswarehousetablespartialupdate- Full name
posthog.posthog_environmentswarehousetablespartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentswarehousetablesdestroy Write
Create, Read, Update and Delete Warehouse Tables.
- Lua path
app.integrations.posthog.environmentswarehousetablesdestroy- Full name
posthog.posthog_environmentswarehousetablesdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentswarehousetablesrefreshschemacreate Write
Create, Read, Update and Delete Warehouse Tables.
- Lua path
app.integrations.posthog.environmentswarehousetablesrefreshschemacreate- Full name
posthog.posthog_environmentswarehousetablesrefreshschemacreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentswarehousetablesupdateschemacreate Write
Create, Read, Update and Delete Warehouse Tables.
- Lua path
app.integrations.posthog.environmentswarehousetablesupdateschemacreate- Full name
posthog.posthog_environmentswarehousetablesupdateschemacreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentswarehousetablesfilecreate Write
Create, Read, Update and Delete Warehouse Tables.
- Lua path
app.integrations.posthog.environmentswarehousetablesfilecreate- Full name
posthog.posthog_environmentswarehousetablesfilecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentswarehouseviewlinklist Read
Create, Read, Update and Delete View Columns.
- Lua path
app.integrations.posthog.environmentswarehouseviewlinklist- Full name
posthog.posthog_environmentswarehouseviewlinklist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentswarehouseviewlinkcreate Write
Create, Read, Update and Delete View Columns.
- Lua path
app.integrations.posthog.environmentswarehouseviewlinkcreate- Full name
posthog.posthog_environmentswarehouseviewlinkcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentswarehouseviewlinkretrieve Read
Create, Read, Update and Delete View Columns.
- Lua path
app.integrations.posthog.environmentswarehouseviewlinkretrieve- Full name
posthog.posthog_environmentswarehouseviewlinkretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentswarehouseviewlinkupdate Write
Create, Read, Update and Delete View Columns.
- Lua path
app.integrations.posthog.environmentswarehouseviewlinkupdate- Full name
posthog.posthog_environmentswarehouseviewlinkupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentswarehouseviewlinkpartialupdate Write
Create, Read, Update and Delete View Columns.
- Lua path
app.integrations.posthog.environmentswarehouseviewlinkpartialupdate- Full name
posthog.posthog_environmentswarehouseviewlinkpartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentswarehouseviewlinkdestroy Write
Create, Read, Update and Delete View Columns.
- Lua path
app.integrations.posthog.environmentswarehouseviewlinkdestroy- Full name
posthog.posthog_environmentswarehouseviewlinkdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentswarehouseviewlinkvalidatecreate Write
Create, Read, Update and Delete View Columns.
- Lua path
app.integrations.posthog.environmentswarehouseviewlinkvalidatecreate- Full name
posthog.posthog_environmentswarehouseviewlinkvalidatecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentswarehouseviewlinkslist Read
Create, Read, Update and Delete View Columns.
- Lua path
app.integrations.posthog.environmentswarehouseviewlinkslist- Full name
posthog.posthog_environmentswarehouseviewlinkslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentswarehouseviewlinkscreate Write
Create, Read, Update and Delete View Columns.
- Lua path
app.integrations.posthog.environmentswarehouseviewlinkscreate- Full name
posthog.posthog_environmentswarehouseviewlinkscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentswarehouseviewlinksretrieve Read
Create, Read, Update and Delete View Columns.
- Lua path
app.integrations.posthog.environmentswarehouseviewlinksretrieve- Full name
posthog.posthog_environmentswarehouseviewlinksretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentswarehouseviewlinksupdate Write
Create, Read, Update and Delete View Columns.
- Lua path
app.integrations.posthog.environmentswarehouseviewlinksupdate- Full name
posthog.posthog_environmentswarehouseviewlinksupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentswarehouseviewlinkspartialupdate Write
Create, Read, Update and Delete View Columns.
- Lua path
app.integrations.posthog.environmentswarehouseviewlinkspartialupdate- Full name
posthog.posthog_environmentswarehouseviewlinkspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentswarehouseviewlinksdestroy Write
Create, Read, Update and Delete View Columns.
- Lua path
app.integrations.posthog.environmentswarehouseviewlinksdestroy- Full name
posthog.posthog_environmentswarehouseviewlinksdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentswarehouseviewlinksvalidatecreate Write
Create, Read, Update and Delete View Columns.
- Lua path
app.integrations.posthog.environmentswarehouseviewlinksvalidatecreate- Full name
posthog.posthog_environmentswarehouseviewlinksvalidatecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
approvalpolicieslist Read
Approvalpolicieslist
- Lua path
app.integrations.posthog.approvalpolicieslist- Full name
posthog.posthog_approvalpolicieslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
approvalpoliciescreate Write
Approvalpoliciescreate
- Lua path
app.integrations.posthog.approvalpoliciescreate- Full name
posthog.posthog_approvalpoliciescreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
approvalpoliciesretrieve Read
Approvalpoliciesretrieve
- Lua path
app.integrations.posthog.approvalpoliciesretrieve- Full name
posthog.posthog_approvalpoliciesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
approvalpoliciesupdate Write
Approvalpoliciesupdate
- Lua path
app.integrations.posthog.approvalpoliciesupdate- Full name
posthog.posthog_approvalpoliciesupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
approvalpoliciespartialupdate Write
Approvalpoliciespartialupdate
- Lua path
app.integrations.posthog.approvalpoliciespartialupdate- Full name
posthog.posthog_approvalpoliciespartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
approvalpoliciesdestroy Write
Approvalpoliciesdestroy
- Lua path
app.integrations.posthog.approvalpoliciesdestroy- Full name
posthog.posthog_approvalpoliciesdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
changerequestslist Read
Changerequestslist
- Lua path
app.integrations.posthog.changerequestslist- Full name
posthog.posthog_changerequestslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
changerequestsretrieve Read
Changerequestsretrieve
- Lua path
app.integrations.posthog.changerequestsretrieve- Full name
posthog.posthog_changerequestsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
changerequestsapprovecreate Write
Approve a change request. If quorum is reached, automatically applies the change immediately.
- Lua path
app.integrations.posthog.changerequestsapprovecreate- Full name
posthog.posthog_changerequestsapprovecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
changerequestscancelcreate Write
Cancel a change request. Only the requester can cancel their own pending change request.
- Lua path
app.integrations.posthog.changerequestscancelcreate- Full name
posthog.posthog_changerequestscancelcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
changerequestsrejectcreate Write
Reject a change request.
- Lua path
app.integrations.posthog.changerequestsrejectcreate- Full name
posthog.posthog_changerequestsrejectcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
conversationslist Read
Conversationslist
- Lua path
app.integrations.posthog.conversationslist- Full name
posthog.posthog_conversationslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
conversationscreate Write
Unified endpoint that handles both conversation creation and streaming. - If message is provided: Start new conversation processing - If no message: Stream from existing conversation
- Lua path
app.integrations.posthog.conversationscreate- Full name
posthog.posthog_conversationscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
conversationsretrieve Read
Conversationsretrieve
- Lua path
app.integrations.posthog.conversationsretrieve- Full name
posthog.posthog_conversationsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
conversationsappendmessagecreate Write
Appends a message to an existing conversation without triggering AI processing. This is used for client-side generated messages that need to be persisted (e.g., support ticket confirmation messages).
- Lua path
app.integrations.posthog.conversationsappendmessagecreate- Full name
posthog.posthog_conversationsappendmessagecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
conversationscancelpartialupdate Write
Conversationscancelpartialupdate
- Lua path
app.integrations.posthog.conversationscancelpartialupdate- Full name
posthog.posthog_conversationscancelpartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
conversationsqueueretrieve Read
Conversationsqueueretrieve
- Lua path
app.integrations.posthog.conversationsqueueretrieve- Full name
posthog.posthog_conversationsqueueretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
conversationsqueuecreate Write
Conversationsqueuecreate
- Lua path
app.integrations.posthog.conversationsqueuecreate- Full name
posthog.posthog_conversationsqueuecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
conversationsqueuepartialupdate Write
Conversationsqueuepartialupdate
- Lua path
app.integrations.posthog.conversationsqueuepartialupdate- Full name
posthog.posthog_conversationsqueuepartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
conversationsqueuedestroy Write
Conversationsqueuedestroy
- Lua path
app.integrations.posthog.conversationsqueuedestroy- Full name
posthog.posthog_conversationsqueuedestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
conversationsqueueclearcreate Write
Conversationsqueueclearcreate
- Lua path
app.integrations.posthog.conversationsqueueclearcreate- Full name
posthog.posthog_conversationsqueueclearcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
conversationsviewslist Read
Conversationsviewslist
- Lua path
app.integrations.posthog.conversationsviewslist- Full name
posthog.posthog_conversationsviewslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
conversationsviewscreate Write
Conversationsviewscreate
- Lua path
app.integrations.posthog.conversationsviewscreate- Full name
posthog.posthog_conversationsviewscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
conversationsviewsretrieve Read
Conversationsviewsretrieve
- Lua path
app.integrations.posthog.conversationsviewsretrieve- Full name
posthog.posthog_conversationsviewsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
conversationsviewsdestroy Write
Conversationsviewsdestroy
- Lua path
app.integrations.posthog.conversationsviewsdestroy- Full name
posthog.posthog_conversationsviewsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
customerjourneyslist Read
Customerjourneyslist
- Lua path
app.integrations.posthog.customerjourneyslist- Full name
posthog.posthog_customerjourneyslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
customerjourneyscreate Write
Customerjourneyscreate
- Lua path
app.integrations.posthog.customerjourneyscreate- Full name
posthog.posthog_customerjourneyscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
customerjourneysretrieve Read
Customerjourneysretrieve
- Lua path
app.integrations.posthog.customerjourneysretrieve- Full name
posthog.posthog_customerjourneysretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
customerjourneysupdate Write
Customerjourneysupdate
- Lua path
app.integrations.posthog.customerjourneysupdate- Full name
posthog.posthog_customerjourneysupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
customerjourneyspartialupdate Write
Customerjourneyspartialupdate
- Lua path
app.integrations.posthog.customerjourneyspartialupdate- Full name
posthog.posthog_customerjourneyspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
customerjourneysdestroy Write
Customerjourneysdestroy
- Lua path
app.integrations.posthog.customerjourneysdestroy- Full name
posthog.posthog_customerjourneysdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
customerprofileconfigslist Read
Customerprofileconfigslist
- Lua path
app.integrations.posthog.customerprofileconfigslist- Full name
posthog.posthog_customerprofileconfigslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
customerprofileconfigscreate Write
Customerprofileconfigscreate
- Lua path
app.integrations.posthog.customerprofileconfigscreate- Full name
posthog.posthog_customerprofileconfigscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
customerprofileconfigsretrieve Read
Customerprofileconfigsretrieve
- Lua path
app.integrations.posthog.customerprofileconfigsretrieve- Full name
posthog.posthog_customerprofileconfigsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
customerprofileconfigsupdate Write
Customerprofileconfigsupdate
- Lua path
app.integrations.posthog.customerprofileconfigsupdate- Full name
posthog.posthog_customerprofileconfigsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
customerprofileconfigspartialupdate Write
Customerprofileconfigspartialupdate
- Lua path
app.integrations.posthog.customerprofileconfigspartialupdate- Full name
posthog.posthog_customerprofileconfigspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
customerprofileconfigsdestroy Write
Customerprofileconfigsdestroy
- Lua path
app.integrations.posthog.customerprofileconfigsdestroy- Full name
posthog.posthog_customerprofileconfigsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
desktoprecordingslist Read
RESTful API for managing desktop meeting recordings. Standard CRUD operations plus transcript management as a subresource.
- Lua path
app.integrations.posthog.desktoprecordingslist- Full name
posthog.posthog_desktoprecordingslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
desktoprecordingscreate Write
Create a new recording and get Recall.ai upload token for the desktop SDK
- Lua path
app.integrations.posthog.desktoprecordingscreate- Full name
posthog.posthog_desktoprecordingscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
desktoprecordingsretrieve Read
RESTful API for managing desktop meeting recordings. Standard CRUD operations plus transcript management as a subresource.
- Lua path
app.integrations.posthog.desktoprecordingsretrieve- Full name
posthog.posthog_desktoprecordingsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
desktoprecordingsupdate Write
RESTful API for managing desktop meeting recordings. Standard CRUD operations plus transcript management as a subresource.
- Lua path
app.integrations.posthog.desktoprecordingsupdate- Full name
posthog.posthog_desktoprecordingsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
desktoprecordingspartialupdate Write
RESTful API for managing desktop meeting recordings. Standard CRUD operations plus transcript management as a subresource.
- Lua path
app.integrations.posthog.desktoprecordingspartialupdate- Full name
posthog.posthog_desktoprecordingspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
desktoprecordingsdestroy Write
RESTful API for managing desktop meeting recordings. Standard CRUD operations plus transcript management as a subresource.
- Lua path
app.integrations.posthog.desktoprecordingsdestroy- Full name
posthog.posthog_desktoprecordingsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
desktoprecordingsappendsegmentscreate Write
Append transcript segments (supports batched real-time streaming)
- Lua path
app.integrations.posthog.desktoprecordingsappendsegmentscreate- Full name
posthog.posthog_desktoprecordingsappendsegmentscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingassignmentruleslist Read
Errortrackingassignmentruleslist
- Lua path
app.integrations.posthog.errortrackingassignmentruleslist- Full name
posthog.posthog_errortrackingassignmentruleslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingassignmentrulescreate Write
Errortrackingassignmentrulescreate
- Lua path
app.integrations.posthog.errortrackingassignmentrulescreate- Full name
posthog.posthog_errortrackingassignmentrulescreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingassignmentrulesretrieve Read
Errortrackingassignmentrulesretrieve
- Lua path
app.integrations.posthog.errortrackingassignmentrulesretrieve- Full name
posthog.posthog_errortrackingassignmentrulesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingassignmentrulesupdate Write
Errortrackingassignmentrulesupdate
- Lua path
app.integrations.posthog.errortrackingassignmentrulesupdate- Full name
posthog.posthog_errortrackingassignmentrulesupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingassignmentrulespartialupdate Write
Errortrackingassignmentrulespartialupdate
- Lua path
app.integrations.posthog.errortrackingassignmentrulespartialupdate- Full name
posthog.posthog_errortrackingassignmentrulespartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingassignmentrulesdestroy Write
Errortrackingassignmentrulesdestroy
- Lua path
app.integrations.posthog.errortrackingassignmentrulesdestroy- Full name
posthog.posthog_errortrackingassignmentrulesdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingassignmentrulesreorderpartialupdate Write
Errortrackingassignmentrulesreorderpartialupdate
- Lua path
app.integrations.posthog.errortrackingassignmentrulesreorderpartialupdate- Full name
posthog.posthog_errortrackingassignmentrulesreorderpartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingfingerprintslist Read
Errortrackingfingerprintslist
- Lua path
app.integrations.posthog.errortrackingfingerprintslist- Full name
posthog.posthog_errortrackingfingerprintslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingfingerprintsretrieve Read
Errortrackingfingerprintsretrieve
- Lua path
app.integrations.posthog.errortrackingfingerprintsretrieve- Full name
posthog.posthog_errortrackingfingerprintsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingfingerprintsdestroy Write
Hard delete of this model is not allowed. Use a patch API call to set "deleted" to true
- Lua path
app.integrations.posthog.errortrackingfingerprintsdestroy- Full name
posthog.posthog_errortrackingfingerprintsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackinggitproviderfilelinksresolvegithubretrieve Read
Errortrackinggitproviderfilelinksresolvegithubretrieve
- Lua path
app.integrations.posthog.errortrackinggitproviderfilelinksresolvegithubretrieve- Full name
posthog.posthog_errortrackinggitproviderfilelinksresolvegithubretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackinggitproviderfilelinksresolvegitlabretrieve Read
Errortrackinggitproviderfilelinksresolvegitlabretrieve
- Lua path
app.integrations.posthog.errortrackinggitproviderfilelinksresolvegitlabretrieve- Full name
posthog.posthog_errortrackinggitproviderfilelinksresolvegitlabretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackinggroupingruleslist Read
Errortrackinggroupingruleslist
- Lua path
app.integrations.posthog.errortrackinggroupingruleslist- Full name
posthog.posthog_errortrackinggroupingruleslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackinggroupingrulescreate Write
Errortrackinggroupingrulescreate
- Lua path
app.integrations.posthog.errortrackinggroupingrulescreate- Full name
posthog.posthog_errortrackinggroupingrulescreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackinggroupingrulesretrieve Read
Errortrackinggroupingrulesretrieve
- Lua path
app.integrations.posthog.errortrackinggroupingrulesretrieve- Full name
posthog.posthog_errortrackinggroupingrulesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackinggroupingrulesupdate Write
Errortrackinggroupingrulesupdate
- Lua path
app.integrations.posthog.errortrackinggroupingrulesupdate- Full name
posthog.posthog_errortrackinggroupingrulesupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackinggroupingrulespartialupdate Write
Errortrackinggroupingrulespartialupdate
- Lua path
app.integrations.posthog.errortrackinggroupingrulespartialupdate- Full name
posthog.posthog_errortrackinggroupingrulespartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackinggroupingrulesdestroy Write
Errortrackinggroupingrulesdestroy
- Lua path
app.integrations.posthog.errortrackinggroupingrulesdestroy- Full name
posthog.posthog_errortrackinggroupingrulesdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackinggroupingrulesreorderpartialupdate Write
Errortrackinggroupingrulesreorderpartialupdate
- Lua path
app.integrations.posthog.errortrackinggroupingrulesreorderpartialupdate- Full name
posthog.posthog_errortrackinggroupingrulesreorderpartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingissueslist Read
Errortrackingissueslist
- Lua path
app.integrations.posthog.errortrackingissueslist- Full name
posthog.posthog_errortrackingissueslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingissuescreate Write
Errortrackingissuescreate
- Lua path
app.integrations.posthog.errortrackingissuescreate- Full name
posthog.posthog_errortrackingissuescreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingissuesretrieve Read
Errortrackingissuesretrieve
- Lua path
app.integrations.posthog.errortrackingissuesretrieve- Full name
posthog.posthog_errortrackingissuesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingissuesupdate Write
Errortrackingissuesupdate
- Lua path
app.integrations.posthog.errortrackingissuesupdate- Full name
posthog.posthog_errortrackingissuesupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingissuespartialupdate Write
Errortrackingissuespartialupdate
- Lua path
app.integrations.posthog.errortrackingissuespartialupdate- Full name
posthog.posthog_errortrackingissuespartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingissuesdestroy Write
Hard delete of this model is not allowed. Use a patch API call to set "deleted" to true
- Lua path
app.integrations.posthog.errortrackingissuesdestroy- Full name
posthog.posthog_errortrackingissuesdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingissuesactivityretrieve Read
Errortrackingissuesactivityretrieve
- Lua path
app.integrations.posthog.errortrackingissuesactivityretrieve- Full name
posthog.posthog_errortrackingissuesactivityretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingissuesassignpartialupdate Write
Errortrackingissuesassignpartialupdate
- Lua path
app.integrations.posthog.errortrackingissuesassignpartialupdate- Full name
posthog.posthog_errortrackingissuesassignpartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingissuescohortupdate Write
Errortrackingissuescohortupdate
- Lua path
app.integrations.posthog.errortrackingissuescohortupdate- Full name
posthog.posthog_errortrackingissuescohortupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingissuesmergecreate Write
Errortrackingissuesmergecreate
- Lua path
app.integrations.posthog.errortrackingissuesmergecreate- Full name
posthog.posthog_errortrackingissuesmergecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingissuessplitcreate Write
Errortrackingissuessplitcreate
- Lua path
app.integrations.posthog.errortrackingissuessplitcreate- Full name
posthog.posthog_errortrackingissuessplitcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingissuesallactivityretrieve Read
Errortrackingissuesallactivityretrieve
- Lua path
app.integrations.posthog.errortrackingissuesallactivityretrieve- Full name
posthog.posthog_errortrackingissuesallactivityretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingissuesbulkcreate Write
Errortrackingissuesbulkcreate
- Lua path
app.integrations.posthog.errortrackingissuesbulkcreate- Full name
posthog.posthog_errortrackingissuesbulkcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingissuesexistsretrieve Read
Errortrackingissuesexistsretrieve
- Lua path
app.integrations.posthog.errortrackingissuesexistsretrieve- Full name
posthog.posthog_errortrackingissuesexistsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingissuesvaluesretrieve Read
Errortrackingissuesvaluesretrieve
- Lua path
app.integrations.posthog.errortrackingissuesvaluesretrieve- Full name
posthog.posthog_errortrackingissuesvaluesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_compact_error_tracking_issue_details Write
Get compact error tracking issue details
- Lua path
app.integrations.posthog.get_compact_error_tracking_issue_details- Full name
posthog.posthog_errortrackingqueryissuecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_sampled_exception_events_error_tracking_issue Write
List sampled exception events for an error tracking issue
- Lua path
app.integrations.posthog.list_sampled_exception_events_error_tracking_issue- Full name
posthog.posthog_errortrackingqueryissueeventscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_compact_error_tracking_issues Write
List compact error tracking issues
- Lua path
app.integrations.posthog.list_compact_error_tracking_issues- Full name
posthog.posthog_errortrackingqueryissueslistcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingrecommendationslist Read
Errortrackingrecommendationslist
- Lua path
app.integrations.posthog.errortrackingrecommendationslist- Full name
posthog.posthog_errortrackingrecommendationslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingrecommendationsdismisscreate Write
Errortrackingrecommendationsdismisscreate
- Lua path
app.integrations.posthog.errortrackingrecommendationsdismisscreate- Full name
posthog.posthog_errortrackingrecommendationsdismisscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingrecommendationsrefreshcreate Write
Errortrackingrecommendationsrefreshcreate
- Lua path
app.integrations.posthog.errortrackingrecommendationsrefreshcreate- Full name
posthog.posthog_errortrackingrecommendationsrefreshcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingrecommendationsrestorecreate Write
Errortrackingrecommendationsrestorecreate
- Lua path
app.integrations.posthog.errortrackingrecommendationsrestorecreate- Full name
posthog.posthog_errortrackingrecommendationsrestorecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingsettingsretrievesettingsretrieve Read
Errortrackingsettingsretrievesettingsretrieve
- Lua path
app.integrations.posthog.errortrackingsettingsretrievesettingsretrieve- Full name
posthog.posthog_errortrackingsettingsretrievesettingsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingsettingsupdatesettingspartialupdate Write
Errortrackingsettingsupdatesettingspartialupdate
- Lua path
app.integrations.posthog.errortrackingsettingsupdatesettingspartialupdate- Full name
posthog.posthog_errortrackingsettingsupdatesettingspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingspikedetectionconfiglist Read
Errortrackingspikedetectionconfiglist
- Lua path
app.integrations.posthog.errortrackingspikedetectionconfiglist- Full name
posthog.posthog_errortrackingspikedetectionconfiglist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingspikedetectionconfigupdateconfigpartialupdate Write
Errortrackingspikedetectionconfigupdateconfigpartialupdate
- Lua path
app.integrations.posthog.errortrackingspikedetectionconfigupdateconfigpartialupdate- Full name
posthog.posthog_errortrackingspikedetectionconfigupdateconfigpartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingspikeeventslist Read
Errortrackingspikeeventslist
- Lua path
app.integrations.posthog.errortrackingspikeeventslist- Full name
posthog.posthog_errortrackingspikeeventslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingstackframeslist Read
Errortrackingstackframeslist
- Lua path
app.integrations.posthog.errortrackingstackframeslist- Full name
posthog.posthog_errortrackingstackframeslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingstackframesretrieve Read
Errortrackingstackframesretrieve
- Lua path
app.integrations.posthog.errortrackingstackframesretrieve- Full name
posthog.posthog_errortrackingstackframesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingstackframesdestroy Write
Hard delete of this model is not allowed. Use a patch API call to set "deleted" to true
- Lua path
app.integrations.posthog.errortrackingstackframesdestroy- Full name
posthog.posthog_errortrackingstackframesdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingstackframesbatchgetcreate Write
Errortrackingstackframesbatchgetcreate
- Lua path
app.integrations.posthog.errortrackingstackframesbatchgetcreate- Full name
posthog.posthog_errortrackingstackframesbatchgetcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingsuppressionruleslist Read
Errortrackingsuppressionruleslist
- Lua path
app.integrations.posthog.errortrackingsuppressionruleslist- Full name
posthog.posthog_errortrackingsuppressionruleslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingsuppressionrulescreate Write
Errortrackingsuppressionrulescreate
- Lua path
app.integrations.posthog.errortrackingsuppressionrulescreate- Full name
posthog.posthog_errortrackingsuppressionrulescreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingsuppressionrulesretrieve Read
Errortrackingsuppressionrulesretrieve
- Lua path
app.integrations.posthog.errortrackingsuppressionrulesretrieve- Full name
posthog.posthog_errortrackingsuppressionrulesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingsuppressionrulesupdate Write
Errortrackingsuppressionrulesupdate
- Lua path
app.integrations.posthog.errortrackingsuppressionrulesupdate- Full name
posthog.posthog_errortrackingsuppressionrulesupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingsuppressionrulespartialupdate Write
Errortrackingsuppressionrulespartialupdate
- Lua path
app.integrations.posthog.errortrackingsuppressionrulespartialupdate- Full name
posthog.posthog_errortrackingsuppressionrulespartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingsuppressionrulesdestroy Write
Errortrackingsuppressionrulesdestroy
- Lua path
app.integrations.posthog.errortrackingsuppressionrulesdestroy- Full name
posthog.posthog_errortrackingsuppressionrulesdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingsuppressionrulesreorderpartialupdate Write
Errortrackingsuppressionrulesreorderpartialupdate
- Lua path
app.integrations.posthog.errortrackingsuppressionrulesreorderpartialupdate- Full name
posthog.posthog_errortrackingsuppressionrulesreorderpartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
evaluationrunscreate Write
Create a new evaluation run. This endpoint validates the request and enqueues a Temporal workflow to asynchronously execute the evaluation.
- Lua path
app.integrations.posthog.evaluationrunscreate- Full name
posthog.posthog_evaluationrunscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
evaluationslist Read
Evaluationslist
- Lua path
app.integrations.posthog.evaluationslist- Full name
posthog.posthog_evaluationslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
evaluationscreate Write
Evaluationscreate
- Lua path
app.integrations.posthog.evaluationscreate- Full name
posthog.posthog_evaluationscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
evaluationsretrieve Read
Evaluationsretrieve
- Lua path
app.integrations.posthog.evaluationsretrieve- Full name
posthog.posthog_evaluationsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
evaluationsupdate Write
Evaluationsupdate
- Lua path
app.integrations.posthog.evaluationsupdate- Full name
posthog.posthog_evaluationsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
evaluationspartialupdate Write
Evaluationspartialupdate
- Lua path
app.integrations.posthog.evaluationspartialupdate- Full name
posthog.posthog_evaluationspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
evaluationsdestroy Write
Hard delete of this model is not allowed. Use a patch API call to set "deleted" to true
- Lua path
app.integrations.posthog.evaluationsdestroy- Full name
posthog.posthog_evaluationsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
evaluationstesthogcreate Write
Test Hog evaluation code against sample events without saving.
- Lua path
app.integrations.posthog.evaluationstesthogcreate- Full name
posthog.posthog_evaluationstesthogcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
eventfilterretrieve Read
Returns the event filter config for the team, or null if not yet created.
- Lua path
app.integrations.posthog.eventfilterretrieve- Full name
posthog.posthog_eventfilterretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
eventfiltercreate Write
Create or update the event filter config.
- Lua path
app.integrations.posthog.eventfiltercreate- Full name
posthog.posthog_eventfiltercreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
eventfiltermetricsretrieve Read
Single event filter per team. GET /eventfilter/ - returns the config (or null if not yet created) POST /eventfilter/ - creates or updates the config (upsert) GET /eventfilter/metrics/ - time-series metrics GET /eventfilter/metrics/totals/ - aggregate totals
- Lua path
app.integrations.posthog.eventfiltermetricsretrieve- Full name
posthog.posthog_eventfiltermetricsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
eventfiltermetricstotalsretrieve Read
Single event filter per team. GET /eventfilter/ - returns the config (or null if not yet created) POST /eventfilter/ - creates or updates the config (upsert) GET /eventfilter/metrics/ - time-series metrics GET /eventfilter/metrics/totals/ - aggregate totals
- Lua path
app.integrations.posthog.eventfiltermetricstotalsretrieve- Full name
posthog.posthog_eventfiltermetricstotalsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
healthissueslist Read
Healthissueslist
- Lua path
app.integrations.posthog.healthissueslist- Full name
posthog.posthog_healthissueslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
healthissuesretrieve Read
Healthissuesretrieve
- Lua path
app.integrations.posthog.healthissuesretrieve- Full name
posthog.posthog_healthissuesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
healthissuespartialupdate Write
Healthissuespartialupdate
- Lua path
app.integrations.posthog.healthissuespartialupdate- Full name
posthog.posthog_healthissuespartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
healthissuesresolvecreate Write
Healthissuesresolvecreate
- Lua path
app.integrations.posthog.healthissuesresolvecreate- Full name
posthog.posthog_healthissuesresolvecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
healthissuessummaryretrieve Read
Healthissuessummaryretrieve
- Lua path
app.integrations.posthog.healthissuessummaryretrieve- Full name
posthog.posthog_healthissuessummaryretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
lineagegetupstreamretrieve Read
Lineagegetupstreamretrieve
- Lua path
app.integrations.posthog.lineagegetupstreamretrieve- Full name
posthog.posthog_lineagegetupstreamretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmanalyticsclusteringconfigretrieve Read
Team-level clustering configuration (event filters for automated pipelines).
- Lua path
app.integrations.posthog.llmanalyticsclusteringconfigretrieve- Full name
posthog.posthog_llmanalyticsclusteringconfigretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmanalyticsclusteringconfigseteventfilterscreate Write
Team-level clustering configuration (event filters for automated pipelines).
- Lua path
app.integrations.posthog.llmanalyticsclusteringconfigseteventfilterscreate- Full name
posthog.posthog_llmanalyticsclusteringconfigseteventfilterscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmanalyticsclusteringjobslist Read
CRUD for clustering job configurations (max 5 per team).
- Lua path
app.integrations.posthog.llmanalyticsclusteringjobslist- Full name
posthog.posthog_llmanalyticsclusteringjobslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmanalyticsclusteringjobscreate Write
CRUD for clustering job configurations (max 5 per team).
- Lua path
app.integrations.posthog.llmanalyticsclusteringjobscreate- Full name
posthog.posthog_llmanalyticsclusteringjobscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmanalyticsclusteringjobsretrieve Read
CRUD for clustering job configurations (max 5 per team).
- Lua path
app.integrations.posthog.llmanalyticsclusteringjobsretrieve- Full name
posthog.posthog_llmanalyticsclusteringjobsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmanalyticsclusteringjobsupdate Write
CRUD for clustering job configurations (max 5 per team).
- Lua path
app.integrations.posthog.llmanalyticsclusteringjobsupdate- Full name
posthog.posthog_llmanalyticsclusteringjobsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmanalyticsclusteringjobspartialupdate Write
CRUD for clustering job configurations (max 5 per team).
- Lua path
app.integrations.posthog.llmanalyticsclusteringjobspartialupdate- Full name
posthog.posthog_llmanalyticsclusteringjobspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmanalyticsclusteringjobsdestroy Write
CRUD for clustering job configurations (max 5 per team).
- Lua path
app.integrations.posthog.llmanalyticsclusteringjobsdestroy- Full name
posthog.posthog_llmanalyticsclusteringjobsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmanalyticsevaluationconfigretrieve Read
Get the evaluation config for this team
- Lua path
app.integrations.posthog.llmanalyticsevaluationconfigretrieve- Full name
posthog.posthog_llmanalyticsevaluationconfigretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmanalyticsevaluationconfigsetactivekeycreate Write
Set the active provider key for evaluations
- Lua path
app.integrations.posthog.llmanalyticsevaluationconfigsetactivekeycreate- Full name
posthog.posthog_llmanalyticsevaluationconfigsetactivekeycreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmanalyticsevaluationreportslist Read
CRUD for evaluation report configurations + report run history.
- Lua path
app.integrations.posthog.llmanalyticsevaluationreportslist- Full name
posthog.posthog_llmanalyticsevaluationreportslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmanalyticsevaluationreportscreate Write
CRUD for evaluation report configurations + report run history.
- Lua path
app.integrations.posthog.llmanalyticsevaluationreportscreate- Full name
posthog.posthog_llmanalyticsevaluationreportscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmanalyticsevaluationreportsretrieve Read
CRUD for evaluation report configurations + report run history.
- Lua path
app.integrations.posthog.llmanalyticsevaluationreportsretrieve- Full name
posthog.posthog_llmanalyticsevaluationreportsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmanalyticsevaluationreportsupdate Write
CRUD for evaluation report configurations + report run history.
- Lua path
app.integrations.posthog.llmanalyticsevaluationreportsupdate- Full name
posthog.posthog_llmanalyticsevaluationreportsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmanalyticsevaluationreportspartialupdate Write
CRUD for evaluation report configurations + report run history.
- Lua path
app.integrations.posthog.llmanalyticsevaluationreportspartialupdate- Full name
posthog.posthog_llmanalyticsevaluationreportspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmanalyticsevaluationreportsdestroy Write
Hard delete of this model is not allowed. Use a patch API call to set "deleted" to true
- Lua path
app.integrations.posthog.llmanalyticsevaluationreportsdestroy- Full name
posthog.posthog_llmanalyticsevaluationreportsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmanalyticsevaluationreportsgeneratecreate Write
Trigger immediate report generation.
- Lua path
app.integrations.posthog.llmanalyticsevaluationreportsgeneratecreate- Full name
posthog.posthog_llmanalyticsevaluationreportsgeneratecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmanalyticsevaluationreportsrunslist Read
List report runs (history) for this report.
- Lua path
app.integrations.posthog.llmanalyticsevaluationreportsrunslist- Full name
posthog.posthog_llmanalyticsevaluationreportsrunslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmanalyticsevaluationsummarycreate Write
Generate an AI-powered summary of evaluation results. This endpoint analyzes evaluation runs and identifies patterns in passing and failing evaluations, providing actionable recommendations. Data is fetched server-side by evaluation ID to ensure data integr...
- Lua path
app.integrations.posthog.llmanalyticsevaluationsummarycreate- Full name
posthog.posthog_llmanalyticsevaluationsummarycreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmanalyticsmodelsretrieve Read
List available models for a provider.
- Lua path
app.integrations.posthog.llmanalyticsmodelsretrieve- Full name
posthog.posthog_llmanalyticsmodelsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmanalyticsofflineevaluationsexperimentitemscreate Write
Llmanalyticsofflineevaluationsexperimentitemscreate
- Lua path
app.integrations.posthog.llmanalyticsofflineevaluationsexperimentitemscreate- Full name
posthog.posthog_llmanalyticsofflineevaluationsexperimentitemscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmanalyticsproviderkeyvalidationscreate Write
Validate LLM provider API keys without persisting them
- Lua path
app.integrations.posthog.llmanalyticsproviderkeyvalidationscreate- Full name
posthog.posthog_llmanalyticsproviderkeyvalidationscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmanalyticsproviderkeyslist Read
Llmanalyticsproviderkeyslist
- Lua path
app.integrations.posthog.llmanalyticsproviderkeyslist- Full name
posthog.posthog_llmanalyticsproviderkeyslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmanalyticsproviderkeyscreate Write
Llmanalyticsproviderkeyscreate
- Lua path
app.integrations.posthog.llmanalyticsproviderkeyscreate- Full name
posthog.posthog_llmanalyticsproviderkeyscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmanalyticsproviderkeysretrieve Read
Llmanalyticsproviderkeysretrieve
- Lua path
app.integrations.posthog.llmanalyticsproviderkeysretrieve- Full name
posthog.posthog_llmanalyticsproviderkeysretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmanalyticsproviderkeysupdate Write
Llmanalyticsproviderkeysupdate
- Lua path
app.integrations.posthog.llmanalyticsproviderkeysupdate- Full name
posthog.posthog_llmanalyticsproviderkeysupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmanalyticsproviderkeyspartialupdate Write
Llmanalyticsproviderkeyspartialupdate
- Lua path
app.integrations.posthog.llmanalyticsproviderkeyspartialupdate- Full name
posthog.posthog_llmanalyticsproviderkeyspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmanalyticsproviderkeysdestroy Write
Llmanalyticsproviderkeysdestroy
- Lua path
app.integrations.posthog.llmanalyticsproviderkeysdestroy- Full name
posthog.posthog_llmanalyticsproviderkeysdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmanalyticsproviderkeysassigncreate Write
Assign this key to evaluations and optionally re-enable them.
- Lua path
app.integrations.posthog.llmanalyticsproviderkeysassigncreate- Full name
posthog.posthog_llmanalyticsproviderkeysassigncreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmanalyticsproviderkeysdependentconfigsretrieve Read
Get evaluations using this key and alternative keys for replacement.
- Lua path
app.integrations.posthog.llmanalyticsproviderkeysdependentconfigsretrieve- Full name
posthog.posthog_llmanalyticsproviderkeysdependentconfigsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmanalyticsproviderkeysvalidatecreate Write
Llmanalyticsproviderkeysvalidatecreate
- Lua path
app.integrations.posthog.llmanalyticsproviderkeysvalidatecreate- Full name
posthog.posthog_llmanalyticsproviderkeysvalidatecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmanalyticsproviderkeystrialevaluationsretrieve Read
List enabled evaluations currently using trial credits for a given provider.
- Lua path
app.integrations.posthog.llmanalyticsproviderkeystrialevaluationsretrieve- Full name
posthog.posthog_llmanalyticsproviderkeystrialevaluationsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmanalyticsreviewqueueitemslist Read
Llmanalyticsreviewqueueitemslist
- Lua path
app.integrations.posthog.llmanalyticsreviewqueueitemslist- Full name
posthog.posthog_llmanalyticsreviewqueueitemslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmanalyticsreviewqueueitemscreate Write
Llmanalyticsreviewqueueitemscreate
- Lua path
app.integrations.posthog.llmanalyticsreviewqueueitemscreate- Full name
posthog.posthog_llmanalyticsreviewqueueitemscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmanalyticsreviewqueueitemsretrieve Read
Llmanalyticsreviewqueueitemsretrieve
- Lua path
app.integrations.posthog.llmanalyticsreviewqueueitemsretrieve- Full name
posthog.posthog_llmanalyticsreviewqueueitemsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmanalyticsreviewqueueitemspartialupdate Write
Llmanalyticsreviewqueueitemspartialupdate
- Lua path
app.integrations.posthog.llmanalyticsreviewqueueitemspartialupdate- Full name
posthog.posthog_llmanalyticsreviewqueueitemspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmanalyticsreviewqueueitemsdestroy Write
Llmanalyticsreviewqueueitemsdestroy
- Lua path
app.integrations.posthog.llmanalyticsreviewqueueitemsdestroy- Full name
posthog.posthog_llmanalyticsreviewqueueitemsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmanalyticsreviewqueueslist Read
Llmanalyticsreviewqueueslist
- Lua path
app.integrations.posthog.llmanalyticsreviewqueueslist- Full name
posthog.posthog_llmanalyticsreviewqueueslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmanalyticsreviewqueuescreate Write
Llmanalyticsreviewqueuescreate
- Lua path
app.integrations.posthog.llmanalyticsreviewqueuescreate- Full name
posthog.posthog_llmanalyticsreviewqueuescreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmanalyticsreviewqueuesretrieve Read
Llmanalyticsreviewqueuesretrieve
- Lua path
app.integrations.posthog.llmanalyticsreviewqueuesretrieve- Full name
posthog.posthog_llmanalyticsreviewqueuesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmanalyticsreviewqueuespartialupdate Write
Llmanalyticsreviewqueuespartialupdate
- Lua path
app.integrations.posthog.llmanalyticsreviewqueuespartialupdate- Full name
posthog.posthog_llmanalyticsreviewqueuespartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmanalyticsreviewqueuesdestroy Write
Llmanalyticsreviewqueuesdestroy
- Lua path
app.integrations.posthog.llmanalyticsreviewqueuesdestroy- Full name
posthog.posthog_llmanalyticsreviewqueuesdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmanalyticsscoredefinitionslist Read
Llmanalyticsscoredefinitionslist
- Lua path
app.integrations.posthog.llmanalyticsscoredefinitionslist- Full name
posthog.posthog_llmanalyticsscoredefinitionslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmanalyticsscoredefinitionscreate Write
Llmanalyticsscoredefinitionscreate
- Lua path
app.integrations.posthog.llmanalyticsscoredefinitionscreate- Full name
posthog.posthog_llmanalyticsscoredefinitionscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmanalyticsscoredefinitionsretrieve Read
Llmanalyticsscoredefinitionsretrieve
- Lua path
app.integrations.posthog.llmanalyticsscoredefinitionsretrieve- Full name
posthog.posthog_llmanalyticsscoredefinitionsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmanalyticsscoredefinitionspartialupdate Write
Llmanalyticsscoredefinitionspartialupdate
- Lua path
app.integrations.posthog.llmanalyticsscoredefinitionspartialupdate- Full name
posthog.posthog_llmanalyticsscoredefinitionspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmanalyticsscoredefinitionsnewversioncreate Write
Llmanalyticsscoredefinitionsnewversioncreate
- Lua path
app.integrations.posthog.llmanalyticsscoredefinitionsnewversioncreate- Full name
posthog.posthog_llmanalyticsscoredefinitionsnewversioncreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmanalyticssentimentcreate Write
Llmanalyticssentimentcreate
- Lua path
app.integrations.posthog.llmanalyticssentimentcreate- Full name
posthog.posthog_llmanalyticssentimentcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmanalyticssentimentgenerationscreate Write
Llmanalyticssentimentgenerationscreate
- Lua path
app.integrations.posthog.llmanalyticssentimentgenerationscreate- Full name
posthog.posthog_llmanalyticssentimentgenerationscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmanalyticssummarizationcreate Write
Generate an AI-powered summary of an LLM trace or event. This endpoint analyzes the provided trace/event, generates a line-numbered text representation, and uses an LLM to create a concise summary with line references. Two ways to use this endpoint: 1. By I...
- Lua path
app.integrations.posthog.llmanalyticssummarizationcreate- Full name
posthog.posthog_llmanalyticssummarizationcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmanalyticssummarizationbatchcheckcreate Write
Check which traces have cached summaries available. This endpoint allows batch checking of multiple trace IDs to see which ones have cached summaries. Returns only the traces that have cached summaries with their titles. Use Cases: - Load cached summaries o...
- Lua path
app.integrations.posthog.llmanalyticssummarizationbatchcheckcreate- Full name
posthog.posthog_llmanalyticssummarizationbatchcheckcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmanalyticstextreprcreate Write
Generate a human-readable text representation of an LLM trace event. This endpoint converts LLM analytics events ($aigeneration, $aispan, $aiembedding, or $aitrace) into formatted text representations suitable for display, logging, or analysis. Supported Ev...
- Lua path
app.integrations.posthog.llmanalyticstextreprcreate- Full name
posthog.posthog_llmanalyticstextreprcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmanalyticstracereviewslist Read
Llmanalyticstracereviewslist
- Lua path
app.integrations.posthog.llmanalyticstracereviewslist- Full name
posthog.posthog_llmanalyticstracereviewslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmanalyticstracereviewscreate Write
Llmanalyticstracereviewscreate
- Lua path
app.integrations.posthog.llmanalyticstracereviewscreate- Full name
posthog.posthog_llmanalyticstracereviewscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmanalyticstracereviewsretrieve Read
Llmanalyticstracereviewsretrieve
- Lua path
app.integrations.posthog.llmanalyticstracereviewsretrieve- Full name
posthog.posthog_llmanalyticstracereviewsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmanalyticstracereviewspartialupdate Write
Llmanalyticstracereviewspartialupdate
- Lua path
app.integrations.posthog.llmanalyticstracereviewspartialupdate- Full name
posthog.posthog_llmanalyticstracereviewspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmanalyticstracereviewsdestroy Write
Llmanalyticstracereviewsdestroy
- Lua path
app.integrations.posthog.llmanalyticstracereviewsdestroy- Full name
posthog.posthog_llmanalyticstracereviewsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmanalyticstranslatecreate Write
Translate text to target language.
- Lua path
app.integrations.posthog.llmanalyticstranslatecreate- Full name
posthog.posthog_llmanalyticstranslatecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmpromptslist Read
Llmpromptslist
- Lua path
app.integrations.posthog.llmpromptslist- Full name
posthog.posthog_llmpromptslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmpromptscreate Write
Llmpromptscreate
- Lua path
app.integrations.posthog.llmpromptscreate- Full name
posthog.posthog_llmpromptscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmpromptsnameretrieve Read
Llmpromptsnameretrieve
- Lua path
app.integrations.posthog.llmpromptsnameretrieve- Full name
posthog.posthog_llmpromptsnameretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmpromptsnamepartialupdate Write
Llmpromptsnamepartialupdate
- Lua path
app.integrations.posthog.llmpromptsnamepartialupdate- Full name
posthog.posthog_llmpromptsnamepartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmpromptsnamearchivecreate Write
Llmpromptsnamearchivecreate
- Lua path
app.integrations.posthog.llmpromptsnamearchivecreate- Full name
posthog.posthog_llmpromptsnamearchivecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmpromptsnameduplicatecreate Write
Llmpromptsnameduplicatecreate
- Lua path
app.integrations.posthog.llmpromptsnameduplicatecreate- Full name
posthog.posthog_llmpromptsnameduplicatecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmpromptsresolvenameretrieve Read
Llmpromptsresolvenameretrieve
- Lua path
app.integrations.posthog.llmpromptsresolvenameretrieve- Full name
posthog.posthog_llmpromptsresolvenameretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmskillslist Read
Llmskillslist
- Lua path
app.integrations.posthog.llmskillslist- Full name
posthog.posthog_llmskillslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmskillscreate Write
Llmskillscreate
- Lua path
app.integrations.posthog.llmskillscreate- Full name
posthog.posthog_llmskillscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmskillsnameretrieve Read
Llmskillsnameretrieve
- Lua path
app.integrations.posthog.llmskillsnameretrieve- Full name
posthog.posthog_llmskillsnameretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmskillsnamepartialupdate Write
Llmskillsnamepartialupdate
- Lua path
app.integrations.posthog.llmskillsnamepartialupdate- Full name
posthog.posthog_llmskillsnamepartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmskillsnamearchivecreate Write
Llmskillsnamearchivecreate
- Lua path
app.integrations.posthog.llmskillsnamearchivecreate- Full name
posthog.posthog_llmskillsnamearchivecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmskillsnameduplicatecreate Write
Llmskillsnameduplicatecreate
- Lua path
app.integrations.posthog.llmskillsnameduplicatecreate- Full name
posthog.posthog_llmskillsnameduplicatecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmskillsnamefilescreate Write
Llmskillsnamefilescreate
- Lua path
app.integrations.posthog.llmskillsnamefilescreate- Full name
posthog.posthog_llmskillsnamefilescreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmskillsnamefilesrenamecreate Write
Llmskillsnamefilesrenamecreate
- Lua path
app.integrations.posthog.llmskillsnamefilesrenamecreate- Full name
posthog.posthog_llmskillsnamefilesrenamecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmskillsnamefilesretrieve Read
Llmskillsnamefilesretrieve
- Lua path
app.integrations.posthog.llmskillsnamefilesretrieve- Full name
posthog.posthog_llmskillsnamefilesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmskillsnamefilesdestroy Write
Llmskillsnamefilesdestroy
- Lua path
app.integrations.posthog.llmskillsnamefilesdestroy- Full name
posthog.posthog_llmskillsnamefilesdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
llmskillsresolvenameretrieve Read
Llmskillsresolvenameretrieve
- Lua path
app.integrations.posthog.llmskillsresolvenameretrieve- Full name
posthog.posthog_llmskillsresolvenameretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
logsexplain_log_with_icreate Write
Explain a log entry using AI. POST /api/environments/:id/logs/explainLogWithAI/
- Lua path
app.integrations.posthog.logsexplain_log_with_icreate- Full name
posthog.posthog_logsexplain_log_with_a_icreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
logsviewslist Read
Logsviewslist
- Lua path
app.integrations.posthog.logsviewslist- Full name
posthog.posthog_logsviewslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
logsviewscreate Write
Logsviewscreate
- Lua path
app.integrations.posthog.logsviewscreate- Full name
posthog.posthog_logsviewscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
logsviewsretrieve Read
Logsviewsretrieve
- Lua path
app.integrations.posthog.logsviewsretrieve- Full name
posthog.posthog_logsviewsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
logsviewsupdate Write
Logsviewsupdate
- Lua path
app.integrations.posthog.logsviewsupdate- Full name
posthog.posthog_logsviewsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
logsviewspartialupdate Write
Logsviewspartialupdate
- Lua path
app.integrations.posthog.logsviewspartialupdate- Full name
posthog.posthog_logsviewspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
logsviewsdestroy Write
Logsviewsdestroy
- Lua path
app.integrations.posthog.logsviewsdestroy- Full name
posthog.posthog_logsviewsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
managedviewsetsretrieve Read
Get all views associated with a specific managed viewset. GET /api/environments/{teamid}/managedviewsets/{kind}/
- Lua path
app.integrations.posthog.managedviewsetsretrieve- Full name
posthog.posthog_managedviewsetsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
managedviewsetsupdate Write
Enable or disable a managed viewset by kind. PUT /api/environments/{teamid}/managedviewsets/{kind}/ with body {"enabled": true/false}
- Lua path
app.integrations.posthog.managedviewsetsupdate- Full name
posthog.posthog_managedviewsetsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
maxtoolscreateandqueryinsightcreate Write
Maxtoolscreateandqueryinsightcreate
- Lua path
app.integrations.posthog.maxtoolscreateandqueryinsightcreate- Full name
posthog.posthog_maxtoolscreateandqueryinsightcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
mcpserverinstallationslist Read
Mcpserverinstallationslist
- Lua path
app.integrations.posthog.mcpserverinstallationslist- Full name
posthog.posthog_mcpserverinstallationslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
mcpserverinstallationscreate Write
Mcpserverinstallationscreate
- Lua path
app.integrations.posthog.mcpserverinstallationscreate- Full name
posthog.posthog_mcpserverinstallationscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
mcpserverinstallationsretrieve Read
Mcpserverinstallationsretrieve
- Lua path
app.integrations.posthog.mcpserverinstallationsretrieve- Full name
posthog.posthog_mcpserverinstallationsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
mcpserverinstallationsupdate Write
Mcpserverinstallationsupdate
- Lua path
app.integrations.posthog.mcpserverinstallationsupdate- Full name
posthog.posthog_mcpserverinstallationsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
mcpserverinstallationspartialupdate Write
Mcpserverinstallationspartialupdate
- Lua path
app.integrations.posthog.mcpserverinstallationspartialupdate- Full name
posthog.posthog_mcpserverinstallationspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
mcpserverinstallationsdestroy Write
Mcpserverinstallationsdestroy
- Lua path
app.integrations.posthog.mcpserverinstallationsdestroy- Full name
posthog.posthog_mcpserverinstallationsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
mcpserverinstallationsproxycreate Write
Mcpserverinstallationsproxycreate
- Lua path
app.integrations.posthog.mcpserverinstallationsproxycreate- Full name
posthog.posthog_mcpserverinstallationsproxycreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
mcpserverinstallationstoolsretrieve Read
Mcpserverinstallationstoolsretrieve
- Lua path
app.integrations.posthog.mcpserverinstallationstoolsretrieve- Full name
posthog.posthog_mcpserverinstallationstoolsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
mcpserverinstallationstoolspartialupdate Write
Mcpserverinstallationstoolspartialupdate
- Lua path
app.integrations.posthog.mcpserverinstallationstoolspartialupdate- Full name
posthog.posthog_mcpserverinstallationstoolspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
mcpserverinstallationstoolsrefreshcreate Write
Mcpserverinstallationstoolsrefreshcreate
- Lua path
app.integrations.posthog.mcpserverinstallationstoolsrefreshcreate- Full name
posthog.posthog_mcpserverinstallationstoolsrefreshcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
mcpserverinstallationsauthorizeretrieve Read
Start (or re-start) an OAuth flow. Pass templateid to (re)connect a catalog template, or installationid to reconnect an existing custom install using its cached metadata and per-user DCR creds.
- Lua path
app.integrations.posthog.mcpserverinstallationsauthorizeretrieve- Full name
posthog.posthog_mcpserverinstallationsauthorizeretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
mcpserverinstallationsinstallcustomcreate Write
Mcpserverinstallationsinstallcustomcreate
- Lua path
app.integrations.posthog.mcpserverinstallationsinstallcustomcreate- Full name
posthog.posthog_mcpserverinstallationsinstallcustomcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
mcpserverinstallationsinstalltemplatecreate Write
Mcpserverinstallationsinstalltemplatecreate
- Lua path
app.integrations.posthog.mcpserverinstallationsinstalltemplatecreate- Full name
posthog.posthog_mcpserverinstallationsinstalltemplatecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
mcpserverslist Read
Lists curated MCP server templates that users can install with one click. Templates are seeded by PostHog operators and carry shared, encrypted OAuth client credentials. Inactive templates are hidden from the catalog.
- Lua path
app.integrations.posthog.mcpserverslist- Full name
posthog.posthog_mcpserverslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
mcptoolscreate Write
Invoke an MCP tool by name. This endpoint allows MCP callers to invoke Max AI tools directly without going through the full LangChain conversation flow. Scopes are resolved dynamically per tool via dangerouslygetrequiredscopes.
- Lua path
app.integrations.posthog.mcptoolscreate- Full name
posthog.posthog_mcptoolscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
search_documentation Write
Search PostHog documentation
- Lua path
app.integrations.posthog.search_documentation- Full name
posthog.posthog_docssearch
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrievesessionsummariesconfig Read
Retrieve the team's session summaries configuration (product context used to tailor single-session replay summaries).
- Lua path
app.integrations.posthog.retrievesessionsummariesconfig- Full name
posthog.posthog_retrievesessionsummariesconfig
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
updatesessionsummariesconfig Write
Update the team's session summaries configuration (product context used to tailor single-session replay summaries).
- Lua path
app.integrations.posthog.updatesessionsummariesconfig- Full name
posthog.posthog_updatesessionsummariesconfig
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
createsessionsummaries Write
Generate AI summary for a group of session recordings to find patterns and generate a notebook.
- Lua path
app.integrations.posthog.createsessionsummaries- Full name
posthog.posthog_createsessionsummaries
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
createsessionsummariesindividually Write
Generate AI individual summary for each session, without grouping.
- Lua path
app.integrations.posthog.createsessionsummariesindividually- Full name
posthog.posthog_createsessionsummariesindividually
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_subscription_deliveries Read
List subscription deliveries
- Lua path
app.integrations.posthog.list_subscription_deliveries- Full name
posthog.posthog_subscriptionsdeliverieslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieve_subscription_delivery Read
Retrieve subscription delivery
- Lua path
app.integrations.posthog.retrieve_subscription_delivery- Full name
posthog.posthog_subscriptionsdeliveriesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
taggerslist Read
Taggerslist
- Lua path
app.integrations.posthog.taggerslist- Full name
posthog.posthog_taggerslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
taggerscreate Write
Taggerscreate
- Lua path
app.integrations.posthog.taggerscreate- Full name
posthog.posthog_taggerscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
taggersretrieve Read
Taggersretrieve
- Lua path
app.integrations.posthog.taggersretrieve- Full name
posthog.posthog_taggersretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
taggersupdate Write
Taggersupdate
- Lua path
app.integrations.posthog.taggersupdate- Full name
posthog.posthog_taggersupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
taggerspartialupdate Write
Taggerspartialupdate
- Lua path
app.integrations.posthog.taggerspartialupdate- Full name
posthog.posthog_taggerspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
taggersdestroy Write
Hard delete of this model is not allowed. Use a patch API call to set "deleted" to true
- Lua path
app.integrations.posthog.taggersdestroy- Full name
posthog.posthog_taggersdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
taggerstesthogcreate Write
Test Hog tagger code against sample events without saving.
- Lua path
app.integrations.posthog.taggerstesthogcreate- Full name
posthog.posthog_taggerstesthogcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
tracingspansattributesretrieve Read
Tracingspansattributesretrieve
- Lua path
app.integrations.posthog.tracingspansattributesretrieve- Full name
posthog.posthog_tracingspansattributesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
tracingspansquerycreate Write
Tracingspansquerycreate
- Lua path
app.integrations.posthog.tracingspansquerycreate- Full name
posthog.posthog_tracingspansquerycreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
tracingspansservicenamesretrieve Read
Tracingspansservicenamesretrieve
- Lua path
app.integrations.posthog.tracingspansservicenamesretrieve- Full name
posthog.posthog_tracingspansservicenamesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
tracingspanssparklinecreate Write
Tracingspanssparklinecreate
- Lua path
app.integrations.posthog.tracingspanssparklinecreate- Full name
posthog.posthog_tracingspanssparklinecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
tracingspanstracecreate Write
Tracingspanstracecreate
- Lua path
app.integrations.posthog.tracingspanstracecreate- Full name
posthog.posthog_tracingspanstracecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
tracingspansvaluesretrieve Read
Tracingspansvaluesretrieve
- Lua path
app.integrations.posthog.tracingspansvaluesretrieve- Full name
posthog.posthog_tracingspansvaluesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
userinterviewslist Read
Userinterviewslist
- Lua path
app.integrations.posthog.userinterviewslist- Full name
posthog.posthog_userinterviewslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
userinterviewscreate Write
Userinterviewscreate
- Lua path
app.integrations.posthog.userinterviewscreate- Full name
posthog.posthog_userinterviewscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
userinterviewsretrieve Read
Userinterviewsretrieve
- Lua path
app.integrations.posthog.userinterviewsretrieve- Full name
posthog.posthog_userinterviewsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
userinterviewsupdate Write
Userinterviewsupdate
- Lua path
app.integrations.posthog.userinterviewsupdate- Full name
posthog.posthog_userinterviewsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
userinterviewspartialupdate Write
Userinterviewspartialupdate
- Lua path
app.integrations.posthog.userinterviewspartialupdate- Full name
posthog.posthog_userinterviewspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
userinterviewsdestroy Write
Userinterviewsdestroy
- Lua path
app.integrations.posthog.userinterviewsdestroy- Full name
posthog.posthog_userinterviewsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
summarize_web_analytics Read
Summarize web analytics
- Lua path
app.integrations.posthog.summarize_web_analytics- Full name
posthog.posthog_webanalyticsweeklydigest
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
webvitalsretrieve Read
Get web vitals for a specific pathname. Toolbar accesses this via OAuth (handled by TeamAndOrgViewSetMixin.getauthenticators).
- Lua path
app.integrations.posthog.webvitalsretrieve- Full name
posthog.posthog_webvitalsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list Read
List
- Lua path
app.integrations.posthog.list- Full name
posthog.posthog_list
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create Write
Create
- Lua path
app.integrations.posthog.create- Full name
posthog.posthog_create
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieve Read
Retrieve
- Lua path
app.integrations.posthog.retrieve- Full name
posthog.posthog_retrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update Write
Update
- Lua path
app.integrations.posthog.update- Full name
posthog.posthog_update
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
partialupdate Write
Partialupdate
- Lua path
app.integrations.posthog.partialupdate- Full name
posthog.posthog_partialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
destroy Write
Destroy
- Lua path
app.integrations.posthog.destroy- Full name
posthog.posthog_destroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
orgorganizationsbatchexportslist Read
Orgorganizationsbatchexportslist
- Lua path
app.integrations.posthog.orgorganizationsbatchexportslist- Full name
posthog.posthog_orgorganizationsbatchexportslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
orgorganizationsbatchexportscreate Write
Orgorganizationsbatchexportscreate
- Lua path
app.integrations.posthog.orgorganizationsbatchexportscreate- Full name
posthog.posthog_orgorganizationsbatchexportscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
orgorganizationsbatchexportsretrieve Read
Orgorganizationsbatchexportsretrieve
- Lua path
app.integrations.posthog.orgorganizationsbatchexportsretrieve- Full name
posthog.posthog_orgorganizationsbatchexportsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
orgorganizationsbatchexportsupdate Write
Orgorganizationsbatchexportsupdate
- Lua path
app.integrations.posthog.orgorganizationsbatchexportsupdate- Full name
posthog.posthog_orgorganizationsbatchexportsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
orgorganizationsbatchexportspartialupdate Write
Orgorganizationsbatchexportspartialupdate
- Lua path
app.integrations.posthog.orgorganizationsbatchexportspartialupdate- Full name
posthog.posthog_orgorganizationsbatchexportspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
orgorganizationsbatchexportsdestroy Write
Orgorganizationsbatchexportsdestroy
- Lua path
app.integrations.posthog.orgorganizationsbatchexportsdestroy- Full name
posthog.posthog_orgorganizationsbatchexportsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
orgorganizationsbatchexportslogsretrieve Read
Orgorganizationsbatchexportslogsretrieve
- Lua path
app.integrations.posthog.orgorganizationsbatchexportslogsretrieve- Full name
posthog.posthog_orgorganizationsbatchexportslogsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
orgorganizationsbatchexportspausecreate Write
Pause a BatchExport.
- Lua path
app.integrations.posthog.orgorganizationsbatchexportspausecreate- Full name
posthog.posthog_orgorganizationsbatchexportspausecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
orgorganizationsbatchexportsrunteststepcreate Write
Orgorganizationsbatchexportsrunteststepcreate
- Lua path
app.integrations.posthog.orgorganizationsbatchexportsrunteststepcreate- Full name
posthog.posthog_orgorganizationsbatchexportsrunteststepcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
orgorganizationsbatchexportsunpausecreate Write
Unpause a BatchExport.
- Lua path
app.integrations.posthog.orgorganizationsbatchexportsunpausecreate- Full name
posthog.posthog_orgorganizationsbatchexportsunpausecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
orgorganizationsbatchexportsrunteststepnewcreate Write
Orgorganizationsbatchexportsrunteststepnewcreate
- Lua path
app.integrations.posthog.orgorganizationsbatchexportsrunteststepnewcreate- Full name
posthog.posthog_orgorganizationsbatchexportsrunteststepnewcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
orgorganizationsbatchexportstestretrieve Read
Orgorganizationsbatchexportstestretrieve
- Lua path
app.integrations.posthog.orgorganizationsbatchexportstestretrieve- Full name
posthog.posthog_orgorganizationsbatchexportstestretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
domainslist Read
Domainslist
- Lua path
app.integrations.posthog.domainslist- Full name
posthog.posthog_domainslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
domainscreate Write
Domainscreate
- Lua path
app.integrations.posthog.domainscreate- Full name
posthog.posthog_domainscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
domainsretrieve Read
Domainsretrieve
- Lua path
app.integrations.posthog.domainsretrieve- Full name
posthog.posthog_domainsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
domainsupdate Write
Domainsupdate
- Lua path
app.integrations.posthog.domainsupdate- Full name
posthog.posthog_domainsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
domainspartialupdate Write
Domainspartialupdate
- Lua path
app.integrations.posthog.domainspartialupdate- Full name
posthog.posthog_domainspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
domainsdestroy Write
Domainsdestroy
- Lua path
app.integrations.posthog.domainsdestroy- Full name
posthog.posthog_domainsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
domainsscimlogsretrieve Read
Domainsscimlogsretrieve
- Lua path
app.integrations.posthog.domainsscimlogsretrieve- Full name
posthog.posthog_domainsscimlogsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
domainsscimtokencreate Write
Regenerate SCIM bearer token.
- Lua path
app.integrations.posthog.domainsscimtokencreate- Full name
posthog.posthog_domainsscimtokencreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
domainsverifycreate Write
Domainsverifycreate
- Lua path
app.integrations.posthog.domainsverifycreate- Full name
posthog.posthog_domainsverifycreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
orgorganizationsintegrationslist Read
ViewSet for organization-level integrations. Provides access to integrations that are scoped to the entire organization (vs. project-level integrations). Examples include Vercel, AWS Marketplace, etc. Creation is handled by the integration installation flow...
- Lua path
app.integrations.posthog.orgorganizationsintegrationslist- Full name
posthog.posthog_orgorganizationsintegrationslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
orgorganizationsintegrationsretrieve Read
ViewSet for organization-level integrations. Provides access to integrations that are scoped to the entire organization (vs. project-level integrations). Examples include Vercel, AWS Marketplace, etc. Creation is handled by the integration installation flow...
- Lua path
app.integrations.posthog.orgorganizationsintegrationsretrieve- Full name
posthog.posthog_orgorganizationsintegrationsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
orgorganizationintegrationsdestroy Write
ViewSet for organization-level integrations. Provides access to integrations that are scoped to the entire organization (vs. project-level integrations). Examples include Vercel, AWS Marketplace, etc. Creation is handled by the integration installation flow...
- Lua path
app.integrations.posthog.orgorganizationintegrationsdestroy- Full name
posthog.posthog_orgorganizationintegrationsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
integrationsenvironmentmappingpartialupdate Write
ViewSet for organization-level integrations. Provides access to integrations that are scoped to the entire organization (vs. project-level integrations). Examples include Vercel, AWS Marketplace, etc. Creation is handled by the integration installation flow...
- Lua path
app.integrations.posthog.integrationsenvironmentmappingpartialupdate- Full name
posthog.posthog_integrationsenvironmentmappingpartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
inviteslist Read
Inviteslist
- Lua path
app.integrations.posthog.inviteslist- Full name
posthog.posthog_inviteslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
invitescreate Write
Invitescreate
- Lua path
app.integrations.posthog.invitescreate- Full name
posthog.posthog_invitescreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
invitesdestroy Write
Invitesdestroy
- Lua path
app.integrations.posthog.invitesdestroy- Full name
posthog.posthog_invitesdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
invitesbulkcreate Write
Invitesbulkcreate
- Lua path
app.integrations.posthog.invitesbulkcreate- Full name
posthog.posthog_invitesbulkcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
invitesdelegatecreate Write
Create an onboarding delegation invite: an admin-level invite flagged as a setup delegation. Sends a single dedicated delegation email and records the inviting user as having delegated.
- Lua path
app.integrations.posthog.invitesdelegatecreate- Full name
posthog.posthog_invitesdelegatecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
legaldocumentslist Read
Legaldocumentslist
- Lua path
app.integrations.posthog.legaldocumentslist- Full name
posthog.posthog_legaldocumentslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
legaldocumentscreate Write
Legaldocumentscreate
- Lua path
app.integrations.posthog.legaldocumentscreate- Full name
posthog.posthog_legaldocumentscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
legaldocumentsretrieve Read
Legaldocumentsretrieve
- Lua path
app.integrations.posthog.legaldocumentsretrieve- Full name
posthog.posthog_legaldocumentsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
legaldocumentsdownloadretrieve Read
Short-lived redirect to the signed PDF in object storage. 404 while the envelope is still out for signature (or if the upload hasn't completed yet). The underlying presigned URL expires in ~60s; clients should hit this endpoint each time they want to view t...
- Lua path
app.integrations.posthog.legaldocumentsdownloadretrieve- Full name
posthog.posthog_legaldocumentsdownloadretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
memberslist Read
Memberslist
- Lua path
app.integrations.posthog.memberslist- Full name
posthog.posthog_memberslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
membersupdate Write
Membersupdate
- Lua path
app.integrations.posthog.membersupdate- Full name
posthog.posthog_membersupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
memberspartialupdate Write
Memberspartialupdate
- Lua path
app.integrations.posthog.memberspartialupdate- Full name
posthog.posthog_memberspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
membersdestroy Write
Membersdestroy
- Lua path
app.integrations.posthog.membersdestroy- Full name
posthog.posthog_membersdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
membersscopedapikeysretrieve Read
Membersscopedapikeysretrieve
- Lua path
app.integrations.posthog.membersscopedapikeysretrieve- Full name
posthog.posthog_membersscopedapikeysretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
oauthapplicationslist Read
ViewSet for listing OAuth applications at the organization level (read-only).
- Lua path
app.integrations.posthog.oauthapplicationslist- Full name
posthog.posthog_oauthapplicationslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
organizationsprojectslist Read
Projects for the current organization.
- Lua path
app.integrations.posthog.organizationsprojectslist- Full name
posthog.posthog_organizationsprojectslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
organizationsprojectscreate Write
Projects for the current organization.
- Lua path
app.integrations.posthog.organizationsprojectscreate- Full name
posthog.posthog_organizationsprojectscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
organizationsprojectsretrieve Read
Retrieve a project and its settings.
- Lua path
app.integrations.posthog.organizationsprojectsretrieve- Full name
posthog.posthog_organizationsprojectsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
organizationsprojectsupdate Write
Replace a project and its settings. Prefer the PATCH endpoint for partial updates - PUT requires every writable field to be provided.
- Lua path
app.integrations.posthog.organizationsprojectsupdate- Full name
posthog.posthog_organizationsprojectsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
organizationsprojectspartialupdate Write
Update one or more of a project's settings. Only the fields included in the request body are changed.
- Lua path
app.integrations.posthog.organizationsprojectspartialupdate- Full name
posthog.posthog_organizationsprojectspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
organizationsprojectsdestroy Write
Projects for the current organization.
- Lua path
app.integrations.posthog.organizationsprojectsdestroy- Full name
posthog.posthog_organizationsprojectsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
organizationsprojectsactivityretrieve Read
Projects for the current organization.
- Lua path
app.integrations.posthog.organizationsprojectsactivityretrieve- Full name
posthog.posthog_organizationsprojectsactivityretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
organizationsprojectsaddproductintentpartialupdate Write
Projects for the current organization.
- Lua path
app.integrations.posthog.organizationsprojectsaddproductintentpartialupdate- Full name
posthog.posthog_organizationsprojectsaddproductintentpartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
organizationsprojectschangeorganizationcreate Write
Projects for the current organization.
- Lua path
app.integrations.posthog.organizationsprojectschangeorganizationcreate- Full name
posthog.posthog_organizationsprojectschangeorganizationcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
organizationsprojectscompleteproductonboardingpartialupdate Write
Projects for the current organization.
- Lua path
app.integrations.posthog.organizationsprojectscompleteproductonboardingpartialupdate- Full name
posthog.posthog_organizationsprojectscompleteproductonboardingpartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
organizationsprojectsdeletesecrettokenbackuppartialupdate Write
Projects for the current organization.
- Lua path
app.integrations.posthog.organizationsprojectsdeletesecrettokenbackuppartialupdate- Full name
posthog.posthog_organizationsprojectsdeletesecrettokenbackuppartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
organizationsprojectsgenerateconversationspublictokencreate Write
Projects for the current organization.
- Lua path
app.integrations.posthog.organizationsprojectsgenerateconversationspublictokencreate- Full name
posthog.posthog_organizationsprojectsgenerateconversationspublictokencreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
organizationsprojectsisgeneratingdemodataretrieve Read
Projects for the current organization.
- Lua path
app.integrations.posthog.organizationsprojectsisgeneratingdemodataretrieve- Full name
posthog.posthog_organizationsprojectsisgeneratingdemodataretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
organizationsprojectsresettokenpartialupdate Write
Projects for the current organization.
- Lua path
app.integrations.posthog.organizationsprojectsresettokenpartialupdate- Full name
posthog.posthog_organizationsprojectsresettokenpartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
organizationsprojectsrotatesecrettokenpartialupdate Write
Projects for the current organization.
- Lua path
app.integrations.posthog.organizationsprojectsrotatesecrettokenpartialupdate- Full name
posthog.posthog_organizationsprojectsrotatesecrettokenpartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
proxyrecordslist Read
List all reverse proxies configured for the organization. Returns proxy records along with the maximum number allowed by the current plan.
- Lua path
app.integrations.posthog.proxyrecordslist- Full name
posthog.posthog_proxyrecordslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
proxyrecordscreate Write
Create a new managed reverse proxy. Provide the domain you want to proxy through. The response includes the CNAME target you need to add as a DNS record. Once the CNAME is configured, the proxy will be automatically verified and provisioned.
- Lua path
app.integrations.posthog.proxyrecordscreate- Full name
posthog.posthog_proxyrecordscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
proxyrecordsretrieve Read
Get details of a specific reverse proxy by ID. Returns the full configuration including domain, CNAME target, and current provisioning status.
- Lua path
app.integrations.posthog.proxyrecordsretrieve- Full name
posthog.posthog_proxyrecordsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
proxyrecordsdestroy Write
Delete a reverse proxy. For proxies in 'waiting', 'erroring', or 'timedout' status, the record is deleted immediately. For active proxies, a deletion workflow is started to clean up the provisioned infrastructure.
- Lua path
app.integrations.posthog.proxyrecordsdestroy- Full name
posthog.posthog_proxyrecordsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
proxyrecordsdiagnosecreate Write
Run a deep diagnostic on a reverse proxy. Inspects DNS CNAME alignment, the certificate provider's hostname state, CAA records walked up the customer's DNS tree, HTTP-01 challenge reachability, a live event probe, and certificate expiry. Returns a structure...
- Lua path
app.integrations.posthog.proxyrecordsdiagnosecreate- Full name
posthog.posthog_proxyrecordsdiagnosecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
proxyrecordsretrycreate Write
Retry provisioning a failed reverse proxy. Only available for proxies in 'erroring' or 'timedout' status. Resets the proxy to 'waiting' status and restarts the provisioning workflow.
- Lua path
app.integrations.posthog.proxyrecordsretrycreate- Full name
posthog.posthog_proxyrecordsretrycreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
roleexternalreferenceslist Read
Roleexternalreferenceslist
- Lua path
app.integrations.posthog.roleexternalreferenceslist- Full name
posthog.posthog_roleexternalreferenceslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
roleexternalreferencescreate Write
Roleexternalreferencescreate
- Lua path
app.integrations.posthog.roleexternalreferencescreate- Full name
posthog.posthog_roleexternalreferencescreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
roleexternalreferencesdestroy Write
Roleexternalreferencesdestroy
- Lua path
app.integrations.posthog.roleexternalreferencesdestroy- Full name
posthog.posthog_roleexternalreferencesdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
roleexternalreferenceslookupretrieve Read
Roleexternalreferenceslookupretrieve
- Lua path
app.integrations.posthog.roleexternalreferenceslookupretrieve- Full name
posthog.posthog_roleexternalreferenceslookupretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
roleslist Read
Roleslist
- Lua path
app.integrations.posthog.roleslist- Full name
posthog.posthog_roleslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
rolescreate Write
Rolescreate
- Lua path
app.integrations.posthog.rolescreate- Full name
posthog.posthog_rolescreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
rolesretrieve Read
Rolesretrieve
- Lua path
app.integrations.posthog.rolesretrieve- Full name
posthog.posthog_rolesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
rolesupdate Write
Rolesupdate
- Lua path
app.integrations.posthog.rolesupdate- Full name
posthog.posthog_rolesupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
rolespartialupdate Write
Rolespartialupdate
- Lua path
app.integrations.posthog.rolespartialupdate- Full name
posthog.posthog_rolespartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
rolesdestroy Write
Rolesdestroy
- Lua path
app.integrations.posthog.rolesdestroy- Full name
posthog.posthog_rolesdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
rolesrolemembershipslist Read
Rolesrolemembershipslist
- Lua path
app.integrations.posthog.rolesrolemembershipslist- Full name
posthog.posthog_rolesrolemembershipslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
rolesrolemembershipscreate Write
Rolesrolemembershipscreate
- Lua path
app.integrations.posthog.rolesrolemembershipscreate- Full name
posthog.posthog_rolesrolemembershipscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
rolesrolemembershipsretrieve Read
Rolesrolemembershipsretrieve
- Lua path
app.integrations.posthog.rolesrolemembershipsretrieve- Full name
posthog.posthog_rolesrolemembershipsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
rolesrolemembershipsdestroy Write
Rolesrolemembershipsdestroy
- Lua path
app.integrations.posthog.rolesrolemembershipsdestroy- Full name
posthog.posthog_rolesrolemembershipsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
welcomecurrentretrieve Read
Aggregated payload for the invited-user welcome screen.
- Lua path
app.integrations.posthog.welcomecurrentretrieve- Full name
posthog.posthog_welcomecurrentretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
actionslist Read
Actionslist
- Lua path
app.integrations.posthog.actionslist- Full name
posthog.posthog_actionslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
actionscreate Write
Actionscreate
- Lua path
app.integrations.posthog.actionscreate- Full name
posthog.posthog_actionscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
actionsretrieve Read
Actionsretrieve
- Lua path
app.integrations.posthog.actionsretrieve- Full name
posthog.posthog_actionsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
actionsupdate Write
Actionsupdate
- Lua path
app.integrations.posthog.actionsupdate- Full name
posthog.posthog_actionsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
actionspartialupdate Write
Actionspartialupdate
- Lua path
app.integrations.posthog.actionspartialupdate- Full name
posthog.posthog_actionspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
actionsdestroy Write
Hard delete of this model is not allowed. Use a patch API call to set "deleted" to true
- Lua path
app.integrations.posthog.actionsdestroy- Full name
posthog.posthog_actionsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
actionsreferenceslist Read
Actionsreferenceslist
- Lua path
app.integrations.posthog.actionsreferenceslist- Full name
posthog.posthog_actionsreferenceslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
actionsbulkupdatetagscreate Write
Bulk update tags on multiple objects. Accepts: - {"ids": [...], "action": "add"|"remove"|"set", "tags": ["tag1", "tag2"]} Actions: - "add": Add tags to existing tags on each object - "remove": Remove specific tags from each object - "set": Replace all tags...
- Lua path
app.integrations.posthog.actionsbulkupdatetagscreate- Full name
posthog.posthog_actionsbulkupdatetagscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
activityloglist Read
Activityloglist
- Lua path
app.integrations.posthog.activityloglist- Full name
posthog.posthog_activityloglist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
advancedactivitylogslist Read
Advancedactivitylogslist
- Lua path
app.integrations.posthog.advancedactivitylogslist- Full name
posthog.posthog_advancedactivitylogslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
advancedactivitylogsavailablefiltersretrieve Read
Advancedactivitylogsavailablefiltersretrieve
- Lua path
app.integrations.posthog.advancedactivitylogsavailablefiltersretrieve- Full name
posthog.posthog_advancedactivitylogsavailablefiltersretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
advancedactivitylogsexportcreate Write
Advancedactivitylogsexportcreate
- Lua path
app.integrations.posthog.advancedactivitylogsexportcreate- Full name
posthog.posthog_advancedactivitylogsexportcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
alertslist Read
Alertslist
- Lua path
app.integrations.posthog.alertslist- Full name
posthog.posthog_alertslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
alertscreate Write
Alertscreate
- Lua path
app.integrations.posthog.alertscreate- Full name
posthog.posthog_alertscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
alertsretrieve Read
Alertsretrieve
- Lua path
app.integrations.posthog.alertsretrieve- Full name
posthog.posthog_alertsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
alertsupdate Write
Alertsupdate
- Lua path
app.integrations.posthog.alertsupdate- Full name
posthog.posthog_alertsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
alertspartialupdate Write
Alertspartialupdate
- Lua path
app.integrations.posthog.alertspartialupdate- Full name
posthog.posthog_alertspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
alertsdestroy Write
Alertsdestroy
- Lua path
app.integrations.posthog.alertsdestroy- Full name
posthog.posthog_alertsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
alertssimulatecreate Write
Simulate a detector on an insight's historical data. Read-only - no AlertCheck records are created.
- Lua path
app.integrations.posthog.alertssimulatecreate- Full name
posthog.posthog_alertssimulatecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
annotationslist Read
Create, Read, Update and Delete annotations. [See docs](https://posthog.com/docs/data/annotations) for more information on annotations.
- Lua path
app.integrations.posthog.annotationslist- Full name
posthog.posthog_annotationslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
annotationscreate Write
Create, Read, Update and Delete annotations. [See docs](https://posthog.com/docs/data/annotations) for more information on annotations.
- Lua path
app.integrations.posthog.annotationscreate- Full name
posthog.posthog_annotationscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
annotationsretrieve Read
Create, Read, Update and Delete annotations. [See docs](https://posthog.com/docs/data/annotations) for more information on annotations.
- Lua path
app.integrations.posthog.annotationsretrieve- Full name
posthog.posthog_annotationsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
annotationsupdate Write
Create, Read, Update and Delete annotations. [See docs](https://posthog.com/docs/data/annotations) for more information on annotations.
- Lua path
app.integrations.posthog.annotationsupdate- Full name
posthog.posthog_annotationsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
annotationspartialupdate Write
Create, Read, Update and Delete annotations. [See docs](https://posthog.com/docs/data/annotations) for more information on annotations.
- Lua path
app.integrations.posthog.annotationspartialupdate- Full name
posthog.posthog_annotationspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
annotationsdestroy Write
Hard delete of this model is not allowed. Use a patch API call to set "deleted" to true
- Lua path
app.integrations.posthog.annotationsdestroy- Full name
posthog.posthog_annotationsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
batchexportslist Read
Batchexportslist
- Lua path
app.integrations.posthog.batchexportslist- Full name
posthog.posthog_batchexportslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
batchexportscreate Write
Batchexportscreate
- Lua path
app.integrations.posthog.batchexportscreate- Full name
posthog.posthog_batchexportscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
batchexportsbackfillslist Read
ViewSet for BatchExportBackfill models. Allows creating and reading backfills, but not updating or deleting them.
- Lua path
app.integrations.posthog.batchexportsbackfillslist- Full name
posthog.posthog_batchexportsbackfillslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
batchexportsbackfillscreate Write
Create a new backfill for a BatchExport.
- Lua path
app.integrations.posthog.batchexportsbackfillscreate- Full name
posthog.posthog_batchexportsbackfillscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
batchexportsbackfillsretrieve Read
ViewSet for BatchExportBackfill models. Allows creating and reading backfills, but not updating or deleting them.
- Lua path
app.integrations.posthog.batchexportsbackfillsretrieve- Full name
posthog.posthog_batchexportsbackfillsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
batchexportsbackfillscancelcreate Write
Cancel a batch export backfill.
- Lua path
app.integrations.posthog.batchexportsbackfillscancelcreate- Full name
posthog.posthog_batchexportsbackfillscancelcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
batchexportsrunslist Read
Batchexportsrunslist
- Lua path
app.integrations.posthog.batchexportsrunslist- Full name
posthog.posthog_batchexportsrunslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
batchexportsrunsretrieve Read
Batchexportsrunsretrieve
- Lua path
app.integrations.posthog.batchexportsrunsretrieve- Full name
posthog.posthog_batchexportsrunsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
batchexportsrunscancelcreate Write
Cancel a batch export run.
- Lua path
app.integrations.posthog.batchexportsrunscancelcreate- Full name
posthog.posthog_batchexportsrunscancelcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
batchexportsrunslogsretrieve Read
Batchexportsrunslogsretrieve
- Lua path
app.integrations.posthog.batchexportsrunslogsretrieve- Full name
posthog.posthog_batchexportsrunslogsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
batchexportsrunsretrycreate Write
Retry a batch export run. We use the same underlying mechanism as when backfilling a batch export, as retrying a run is the same as backfilling one run.
- Lua path
app.integrations.posthog.batchexportsrunsretrycreate- Full name
posthog.posthog_batchexportsrunsretrycreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
batchexportsretrieve Read
Batchexportsretrieve
- Lua path
app.integrations.posthog.batchexportsretrieve- Full name
posthog.posthog_batchexportsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
batchexportsupdate Write
Batchexportsupdate
- Lua path
app.integrations.posthog.batchexportsupdate- Full name
posthog.posthog_batchexportsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
batchexportspartialupdate Write
Batchexportspartialupdate
- Lua path
app.integrations.posthog.batchexportspartialupdate- Full name
posthog.posthog_batchexportspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
batchexportsdestroy Write
Batchexportsdestroy
- Lua path
app.integrations.posthog.batchexportsdestroy- Full name
posthog.posthog_batchexportsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
batchexportslogsretrieve Read
Batchexportslogsretrieve
- Lua path
app.integrations.posthog.batchexportslogsretrieve- Full name
posthog.posthog_batchexportslogsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
batchexportspausecreate Write
Pause a BatchExport.
- Lua path
app.integrations.posthog.batchexportspausecreate- Full name
posthog.posthog_batchexportspausecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
batchexportsrunteststepcreate Write
Batchexportsrunteststepcreate
- Lua path
app.integrations.posthog.batchexportsrunteststepcreate- Full name
posthog.posthog_batchexportsrunteststepcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
batchexportsunpausecreate Write
Unpause a BatchExport.
- Lua path
app.integrations.posthog.batchexportsunpausecreate- Full name
posthog.posthog_batchexportsunpausecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
batchexportsrunteststepnewcreate Write
Batchexportsrunteststepnewcreate
- Lua path
app.integrations.posthog.batchexportsrunteststepnewcreate- Full name
posthog.posthog_batchexportsrunteststepnewcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
batchexportstestretrieve Read
Batchexportstestretrieve
- Lua path
app.integrations.posthog.batchexportstestretrieve- Full name
posthog.posthog_batchexportstestretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
cohortslist Read
Cohortslist
- Lua path
app.integrations.posthog.cohortslist- Full name
posthog.posthog_cohortslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
cohortscreate Write
Cohortscreate
- Lua path
app.integrations.posthog.cohortscreate- Full name
posthog.posthog_cohortscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
cohortsretrieve Read
Cohortsretrieve
- Lua path
app.integrations.posthog.cohortsretrieve- Full name
posthog.posthog_cohortsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
cohortsupdate Write
Cohortsupdate
- Lua path
app.integrations.posthog.cohortsupdate- Full name
posthog.posthog_cohortsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
cohortspartialupdate Write
Cohortspartialupdate
- Lua path
app.integrations.posthog.cohortspartialupdate- Full name
posthog.posthog_cohortspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
cohortsdestroy Write
Hard delete of this model is not allowed. Use a patch API call to set "deleted" to true
- Lua path
app.integrations.posthog.cohortsdestroy- Full name
posthog.posthog_cohortsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
cohortsactivityretrieve Read
Cohortsactivityretrieve
- Lua path
app.integrations.posthog.cohortsactivityretrieve- Full name
posthog.posthog_cohortsactivityretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
cohortsaddpersonstostaticcohortpartialupdate Write
Cohortsaddpersonstostaticcohortpartialupdate
- Lua path
app.integrations.posthog.cohortsaddpersonstostaticcohortpartialupdate- Full name
posthog.posthog_cohortsaddpersonstostaticcohortpartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
cohortscalculationhistoryretrieve Read
Cohortscalculationhistoryretrieve
- Lua path
app.integrations.posthog.cohortscalculationhistoryretrieve- Full name
posthog.posthog_cohortscalculationhistoryretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
cohortspersonsretrieve Read
Cohortspersonsretrieve
- Lua path
app.integrations.posthog.cohortspersonsretrieve- Full name
posthog.posthog_cohortspersonsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
cohortsremovepersonfromstaticcohortpartialupdate Write
Cohortsremovepersonfromstaticcohortpartialupdate
- Lua path
app.integrations.posthog.cohortsremovepersonfromstaticcohortpartialupdate- Full name
posthog.posthog_cohortsremovepersonfromstaticcohortpartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
cohortsallactivityretrieve Read
Cohortsallactivityretrieve
- Lua path
app.integrations.posthog.cohortsallactivityretrieve- Full name
posthog.posthog_cohortsallactivityretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
commentslist Read
Commentslist
- Lua path
app.integrations.posthog.commentslist- Full name
posthog.posthog_commentslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
commentscreate Write
Commentscreate
- Lua path
app.integrations.posthog.commentscreate- Full name
posthog.posthog_commentscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
commentsretrieve Read
Commentsretrieve
- Lua path
app.integrations.posthog.commentsretrieve- Full name
posthog.posthog_commentsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
commentsupdate Write
Commentsupdate
- Lua path
app.integrations.posthog.commentsupdate- Full name
posthog.posthog_commentsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
commentspartialupdate Write
Commentspartialupdate
- Lua path
app.integrations.posthog.commentspartialupdate- Full name
posthog.posthog_commentspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
commentsdestroy Write
Hard delete of this model is not allowed. Use a patch API call to set "deleted" to true
- Lua path
app.integrations.posthog.commentsdestroy- Full name
posthog.posthog_commentsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
commentscompletecreate Write
Mark a task-comment as complete. Sets completedat and completedby. 400 if the comment is not a task or is already complete.
- Lua path
app.integrations.posthog.commentscompletecreate- Full name
posthog.posthog_commentscompletecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
commentsreopencreate Write
Reopen a completed task-comment. Clears completedat and completedby. 400 if the comment is not a task or is already open.
- Lua path
app.integrations.posthog.commentsreopencreate- Full name
posthog.posthog_commentsreopencreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
commentsthreadretrieve Read
Commentsthreadretrieve
- Lua path
app.integrations.posthog.commentsthreadretrieve- Full name
posthog.posthog_commentsthreadretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
commentscountretrieve Read
Commentscountretrieve
- Lua path
app.integrations.posthog.commentscountretrieve- Full name
posthog.posthog_commentscountretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
conversationsticketslist Read
List tickets with person data attached.
- Lua path
app.integrations.posthog.conversationsticketslist- Full name
posthog.posthog_conversationsticketslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
conversationsticketscreate Write
Conversationsticketscreate
- Lua path
app.integrations.posthog.conversationsticketscreate- Full name
posthog.posthog_conversationsticketscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
conversationsticketsretrieve Read
Get single ticket and mark as read by team.
- Lua path
app.integrations.posthog.conversationsticketsretrieve- Full name
posthog.posthog_conversationsticketsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
conversationsticketsupdate Write
Handle ticket updates including assignee changes.
- Lua path
app.integrations.posthog.conversationsticketsupdate- Full name
posthog.posthog_conversationsticketsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
conversationsticketspartialupdate Write
Conversationsticketspartialupdate
- Lua path
app.integrations.posthog.conversationsticketspartialupdate- Full name
posthog.posthog_conversationsticketspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
conversationsticketsdestroy Write
Conversationsticketsdestroy
- Lua path
app.integrations.posthog.conversationsticketsdestroy- Full name
posthog.posthog_conversationsticketsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
conversationsticketssuggestreplycreate Write
Conversationsticketssuggestreplycreate
- Lua path
app.integrations.posthog.conversationsticketssuggestreplycreate- Full name
posthog.posthog_conversationsticketssuggestreplycreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
conversationsticketsbulkupdatetagscreate Write
Bulk update tags on multiple objects. Accepts: - {"ids": [...], "action": "add"|"remove"|"set", "tags": ["tag1", "tag2"]} Actions: - "add": Add tags to existing tags on each object - "remove": Remove specific tags from each object - "set": Replace all tags...
- Lua path
app.integrations.posthog.conversationsticketsbulkupdatetagscreate- Full name
posthog.posthog_conversationsticketsbulkupdatetagscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
conversationsticketsunreadcountretrieve Read
Get total unread ticket count for the team. Returns the sum of unreadteamcount for all non-resolved tickets. Cached in Redis for 30 seconds, invalidated on changes.
- Lua path
app.integrations.posthog.conversationsticketsunreadcountretrieve- Full name
posthog.posthog_conversationsticketsunreadcountretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboardtemplateslist Read
Dashboardtemplateslist
- Lua path
app.integrations.posthog.dashboardtemplateslist- Full name
posthog.posthog_dashboardtemplateslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboardtemplatescreate Write
Dashboardtemplatescreate
- Lua path
app.integrations.posthog.dashboardtemplatescreate- Full name
posthog.posthog_dashboardtemplatescreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboardtemplatesretrieve Read
Dashboardtemplatesretrieve
- Lua path
app.integrations.posthog.dashboardtemplatesretrieve- Full name
posthog.posthog_dashboardtemplatesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboardtemplatesupdate Write
Dashboardtemplatesupdate
- Lua path
app.integrations.posthog.dashboardtemplatesupdate- Full name
posthog.posthog_dashboardtemplatesupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboardtemplatespartialupdate Write
Dashboardtemplatespartialupdate
- Lua path
app.integrations.posthog.dashboardtemplatespartialupdate- Full name
posthog.posthog_dashboardtemplatespartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboardtemplatesdestroy Write
Hard delete of this model is not allowed. Use a patch API call to set "deleted" to true
- Lua path
app.integrations.posthog.dashboardtemplatesdestroy- Full name
posthog.posthog_dashboardtemplatesdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
copy_team_template_this_project Write
Copy a team template to this project
- Lua path
app.integrations.posthog.copy_team_template_this_project- Full name
posthog.posthog_dashboardtemplatescopybetweenprojectscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboardtemplatesjsonschemaretrieve Read
Dashboardtemplatesjsonschemaretrieve
- Lua path
app.integrations.posthog.dashboardtemplatesjsonschemaretrieve- Full name
posthog.posthog_dashboardtemplatesjsonschemaretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboardslist Read
Dashboardslist
- Lua path
app.integrations.posthog.dashboardslist- Full name
posthog.posthog_dashboardslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboardscreate Write
Dashboardscreate
- Lua path
app.integrations.posthog.dashboardscreate- Full name
posthog.posthog_dashboardscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboardscollaboratorslist Read
Dashboardscollaboratorslist
- Lua path
app.integrations.posthog.dashboardscollaboratorslist- Full name
posthog.posthog_dashboardscollaboratorslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboardscollaboratorscreate Write
Dashboardscollaboratorscreate
- Lua path
app.integrations.posthog.dashboardscollaboratorscreate- Full name
posthog.posthog_dashboardscollaboratorscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboardscollaboratorsdestroy Write
Dashboardscollaboratorsdestroy
- Lua path
app.integrations.posthog.dashboardscollaboratorsdestroy- Full name
posthog.posthog_dashboardscollaboratorsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboardssharinglist Read
Dashboardssharinglist
- Lua path
app.integrations.posthog.dashboardssharinglist- Full name
posthog.posthog_dashboardssharinglist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboardssharingpasswordscreate Write
Create a new password for the sharing configuration.
- Lua path
app.integrations.posthog.dashboardssharingpasswordscreate- Full name
posthog.posthog_dashboardssharingpasswordscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboardssharingpasswordsdestroy Write
Delete a password from the sharing configuration.
- Lua path
app.integrations.posthog.dashboardssharingpasswordsdestroy- Full name
posthog.posthog_dashboardssharingpasswordsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboardssharingrefreshcreate Write
Dashboardssharingrefreshcreate
- Lua path
app.integrations.posthog.dashboardssharingrefreshcreate- Full name
posthog.posthog_dashboardssharingrefreshcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboardsretrieve Read
Dashboardsretrieve
- Lua path
app.integrations.posthog.dashboardsretrieve- Full name
posthog.posthog_dashboardsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboardsupdate Write
Dashboardsupdate
- Lua path
app.integrations.posthog.dashboardsupdate- Full name
posthog.posthog_dashboardsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboardspartialupdate Write
Dashboardspartialupdate
- Lua path
app.integrations.posthog.dashboardspartialupdate- Full name
posthog.posthog_dashboardspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboardsdestroy Write
Hard delete of this model is not allowed. Use a patch API call to set "deleted" to true
- Lua path
app.integrations.posthog.dashboardsdestroy- Full name
posthog.posthog_dashboardsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboardsanalyzerefreshresultcreate Write
Generate AI analysis comparing before/after dashboard refresh. Expects cachekey in request body pointing to the stored 'before' state.
- Lua path
app.integrations.posthog.dashboardsanalyzerefreshresultcreate- Full name
posthog.posthog_dashboardsanalyzerefreshresultcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboardscopytilecreate Write
Copy an existing dashboard tile to another dashboard (insight or text card; new tile row).
- Lua path
app.integrations.posthog.dashboardscopytilecreate- Full name
posthog.posthog_dashboardscopytilecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboardsmovetilepartialupdate Write
Dashboardsmovetilepartialupdate
- Lua path
app.integrations.posthog.dashboardsmovetilepartialupdate- Full name
posthog.posthog_dashboardsmovetilepartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboardsreordertilescreate Write
Dashboardsreordertilescreate
- Lua path
app.integrations.posthog.dashboardsreordertilescreate- Full name
posthog.posthog_dashboardsreordertilescreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboardsruninsightsretrieve Read
Run all insights on a dashboard and return their results.
- Lua path
app.integrations.posthog.dashboardsruninsightsretrieve- Full name
posthog.posthog_dashboardsruninsightsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboardssnapshotcreate Write
Snapshot the current dashboard state (from cache) for AI analysis. Returns a cachekey representing the 'before' state, to be used with analyzerefreshresult.
- Lua path
app.integrations.posthog.dashboardssnapshotcreate- Full name
posthog.posthog_dashboardssnapshotcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboardsstreamtilesretrieve Read
Stream dashboard metadata and tiles via Server-Sent Events. Sends metadata first, then tiles as they are rendered.
- Lua path
app.integrations.posthog.dashboardsstreamtilesretrieve- Full name
posthog.posthog_dashboardsstreamtilesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboardsbulkupdatetagscreate Write
Bulk update tags on multiple objects. Accepts: - {"ids": [...], "action": "add"|"remove"|"set", "tags": ["tag1", "tag2"]} Actions: - "add": Add tags to existing tags on each object - "remove": Remove specific tags from each object - "set": Replace all tags...
- Lua path
app.integrations.posthog.dashboardsbulkupdatetagscreate- Full name
posthog.posthog_dashboardsbulkupdatetagscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboardscreatefromtemplatejsoncreate Write
Dashboardscreatefromtemplatejsoncreate
- Lua path
app.integrations.posthog.dashboardscreatefromtemplatejsoncreate- Full name
posthog.posthog_dashboardscreatefromtemplatejsoncreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dashboardscreateunlisteddashboardcreate Write
Creates an unlisted dashboard from template by tag. Enforces uniqueness (one per tag per team). Returns 409 if unlisted dashboard with this tag already exists.
- Lua path
app.integrations.posthog.dashboardscreateunlisteddashboardcreate- Full name
posthog.posthog_dashboardscreateunlisteddashboardcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
datacolorthemeslist Read
Datacolorthemeslist
- Lua path
app.integrations.posthog.datacolorthemeslist- Full name
posthog.posthog_datacolorthemeslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
datacolorthemescreate Write
Datacolorthemescreate
- Lua path
app.integrations.posthog.datacolorthemescreate- Full name
posthog.posthog_datacolorthemescreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
datacolorthemesretrieve Read
Datacolorthemesretrieve
- Lua path
app.integrations.posthog.datacolorthemesretrieve- Full name
posthog.posthog_datacolorthemesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
datacolorthemesupdate Write
Datacolorthemesupdate
- Lua path
app.integrations.posthog.datacolorthemesupdate- Full name
posthog.posthog_datacolorthemesupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
datacolorthemespartialupdate Write
Datacolorthemespartialupdate
- Lua path
app.integrations.posthog.datacolorthemespartialupdate- Full name
posthog.posthog_datacolorthemespartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
datacolorthemesdestroy Write
Datacolorthemesdestroy
- Lua path
app.integrations.posthog.datacolorthemesdestroy- Full name
posthog.posthog_datacolorthemesdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
datamodelingjobslist Read
List data modeling jobs which are "runs" for our saved queries.
- Lua path
app.integrations.posthog.datamodelingjobslist- Full name
posthog.posthog_datamodelingjobslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
datamodelingjobsretrieve Read
List data modeling jobs which are "runs" for our saved queries.
- Lua path
app.integrations.posthog.datamodelingjobsretrieve- Full name
posthog.posthog_datamodelingjobsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
datamodelingjobsrecentretrieve Read
Get the most recent non-running job for each saved query from the v2 backend.
- Lua path
app.integrations.posthog.datamodelingjobsrecentretrieve- Full name
posthog.posthog_datamodelingjobsrecentretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
datamodelingjobsrunningretrieve Read
Get all currently running jobs from the v2 backend.
- Lua path
app.integrations.posthog.datamodelingjobsrunningretrieve- Full name
posthog.posthog_datamodelingjobsrunningretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
datawarehousecheckdatabasenameretrieve Read
Check if a database name is available.
- Lua path
app.integrations.posthog.datawarehousecheckdatabasenameretrieve- Full name
posthog.posthog_datawarehousecheckdatabasenameretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
datawarehousecompletedactivityretrieve Read
Returns completed/non-running activities (jobs with status 'Completed'). Supports pagination and cutoff time filtering.
- Lua path
app.integrations.posthog.datawarehousecompletedactivityretrieve- Full name
posthog.posthog_datawarehousecompletedactivityretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
datawarehousedatahealthissuesretrieve Read
Returns failed/disabled data pipeline items for the Pipeline status side panel. Includes: materializations, syncs, sources, destinations, and transformations.
- Lua path
app.integrations.posthog.datawarehousedatahealthissuesretrieve- Full name
posthog.posthog_datawarehousedatahealthissuesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
datawarehousedataopsdashboardretrieve Read
Returns the data ops overview dashboard ID for this team, creating it if it doesn't exist yet.
- Lua path
app.integrations.posthog.datawarehousedataopsdashboardretrieve- Full name
posthog.posthog_datawarehousedataopsdashboardretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
datawarehousedeprovisioncreate Write
Start deprovisioning the managed warehouse for this team.
- Lua path
app.integrations.posthog.datawarehousedeprovisioncreate- Full name
posthog.posthog_datawarehousedeprovisioncreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
datawarehousejobstatsretrieve Read
Returns success and failed job statistics for the last 1, 7, or 30 days. Query parameter 'days' can be 1, 7, or 30 (default: 7).
- Lua path
app.integrations.posthog.datawarehousejobstatsretrieve- Full name
posthog.posthog_datawarehousejobstatsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
datawarehousepropertyvaluesretrieve Read
API endpoints for data warehouse aggregate statistics and operations.
- Lua path
app.integrations.posthog.datawarehousepropertyvaluesretrieve- Full name
posthog.posthog_datawarehousepropertyvaluesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
datawarehouseprovisioncreate Write
Start provisioning a managed warehouse for this team.
- Lua path
app.integrations.posthog.datawarehouseprovisioncreate- Full name
posthog.posthog_datawarehouseprovisioncreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
datawarehouseresetpasswordcreate Write
Reset the root password for the managed warehouse.
- Lua path
app.integrations.posthog.datawarehouseresetpasswordcreate- Full name
posthog.posthog_datawarehouseresetpasswordcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
datawarehouserunningactivityretrieve Read
Returns currently running activities (jobs with status 'Running'). Supports pagination and cutoff time filtering.
- Lua path
app.integrations.posthog.datawarehouserunningactivityretrieve- Full name
posthog.posthog_datawarehouserunningactivityretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
datawarehousetotalrowsstatsretrieve Read
Returns aggregated statistics for the data warehouse total rows processed within the current billing period. Used by the frontend data warehouse scene to display usage information.
- Lua path
app.integrations.posthog.datawarehousetotalrowsstatsretrieve- Full name
posthog.posthog_datawarehousetotalrowsstatsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
datawarehousewarehousestatusretrieve Read
Get the current provisioning status of the managed warehouse.
- Lua path
app.integrations.posthog.datawarehousewarehousestatusretrieve- Full name
posthog.posthog_datawarehousewarehousestatusretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
datasetitemslist Read
Datasetitemslist
- Lua path
app.integrations.posthog.datasetitemslist- Full name
posthog.posthog_datasetitemslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
datasetitemscreate Write
Datasetitemscreate
- Lua path
app.integrations.posthog.datasetitemscreate- Full name
posthog.posthog_datasetitemscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
datasetitemsretrieve Read
Datasetitemsretrieve
- Lua path
app.integrations.posthog.datasetitemsretrieve- Full name
posthog.posthog_datasetitemsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
datasetitemsupdate Write
Datasetitemsupdate
- Lua path
app.integrations.posthog.datasetitemsupdate- Full name
posthog.posthog_datasetitemsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
datasetitemspartialupdate Write
Datasetitemspartialupdate
- Lua path
app.integrations.posthog.datasetitemspartialupdate- Full name
posthog.posthog_datasetitemspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
datasetitemsdestroy Write
Hard delete of this model is not allowed. Use a patch API call to set "deleted" to true
- Lua path
app.integrations.posthog.datasetitemsdestroy- Full name
posthog.posthog_datasetitemsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
datasetslist Read
Datasetslist
- Lua path
app.integrations.posthog.datasetslist- Full name
posthog.posthog_datasetslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
datasetscreate Write
Datasetscreate
- Lua path
app.integrations.posthog.datasetscreate- Full name
posthog.posthog_datasetscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
datasetsretrieve Read
Datasetsretrieve
- Lua path
app.integrations.posthog.datasetsretrieve- Full name
posthog.posthog_datasetsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
datasetsupdate Write
Datasetsupdate
- Lua path
app.integrations.posthog.datasetsupdate- Full name
posthog.posthog_datasetsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
datasetspartialupdate Write
Datasetspartialupdate
- Lua path
app.integrations.posthog.datasetspartialupdate- Full name
posthog.posthog_datasetspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
datasetsdestroy Write
Hard delete of this model is not allowed. Use a patch API call to set "deleted" to true
- Lua path
app.integrations.posthog.datasetsdestroy- Full name
posthog.posthog_datasetsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
earlyaccessfeaturelist Read
Earlyaccessfeaturelist
- Lua path
app.integrations.posthog.earlyaccessfeaturelist- Full name
posthog.posthog_earlyaccessfeaturelist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
earlyaccessfeaturecreate Write
Earlyaccessfeaturecreate
- Lua path
app.integrations.posthog.earlyaccessfeaturecreate- Full name
posthog.posthog_earlyaccessfeaturecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
earlyaccessfeatureretrieve Read
Earlyaccessfeatureretrieve
- Lua path
app.integrations.posthog.earlyaccessfeatureretrieve- Full name
posthog.posthog_earlyaccessfeatureretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
earlyaccessfeatureupdate Write
Earlyaccessfeatureupdate
- Lua path
app.integrations.posthog.earlyaccessfeatureupdate- Full name
posthog.posthog_earlyaccessfeatureupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
earlyaccessfeaturepartialupdate Write
Earlyaccessfeaturepartialupdate
- Lua path
app.integrations.posthog.earlyaccessfeaturepartialupdate- Full name
posthog.posthog_earlyaccessfeaturepartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
earlyaccessfeaturedestroy Write
Earlyaccessfeaturedestroy
- Lua path
app.integrations.posthog.earlyaccessfeaturedestroy- Full name
posthog.posthog_earlyaccessfeaturedestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
elementslist Read
Elementslist
- Lua path
app.integrations.posthog.elementslist- Full name
posthog.posthog_elementslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
elementscreate Write
Elementscreate
- Lua path
app.integrations.posthog.elementscreate- Full name
posthog.posthog_elementscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
elementsretrieve Read
Elementsretrieve
- Lua path
app.integrations.posthog.elementsretrieve- Full name
posthog.posthog_elementsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
elementsupdate Write
Elementsupdate
- Lua path
app.integrations.posthog.elementsupdate- Full name
posthog.posthog_elementsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
elementspartialupdate Write
Elementspartialupdate
- Lua path
app.integrations.posthog.elementspartialupdate- Full name
posthog.posthog_elementspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
elementsdestroy Write
Elementsdestroy
- Lua path
app.integrations.posthog.elementsdestroy- Full name
posthog.posthog_elementsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
elementsstatsretrieve Read
The original version of this API always and only returned $autocapture elements If no include query parameter is sent this remains true. Now, you can pass a combination of include query parameters to get different types of elements Currently only $autocaptu...
- Lua path
app.integrations.posthog.elementsstatsretrieve- Full name
posthog.posthog_elementsstatsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
elementsvaluesretrieve Read
Elementsvaluesretrieve
- Lua path
app.integrations.posthog.elementsvaluesretrieve- Full name
posthog.posthog_elementsvaluesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
endpointslist Read
List all endpoints for the team.
- Lua path
app.integrations.posthog.endpointslist- Full name
posthog.posthog_endpointslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
endpointscreate Write
Create a new endpoint.
- Lua path
app.integrations.posthog.endpointscreate- Full name
posthog.posthog_endpointscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
endpointsretrieve Read
Retrieve an endpoint, or a specific version via ?version=N.
- Lua path
app.integrations.posthog.endpointsretrieve- Full name
posthog.posthog_endpointsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
endpointsupdate Write
Update an existing endpoint. Parameters are optional. Pass version in body or ?version=N query param to target a specific version.
- Lua path
app.integrations.posthog.endpointsupdate- Full name
posthog.posthog_endpointsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
endpointspartialupdate Write
Update an existing endpoint.
- Lua path
app.integrations.posthog.endpointspartialupdate- Full name
posthog.posthog_endpointspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
endpointsdestroy Write
Delete an endpoint and clean up materialized query.
- Lua path
app.integrations.posthog.endpointsdestroy- Full name
posthog.posthog_endpointsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
endpointsmaterializationpreviewcreate Write
Preview the materialization transform for an endpoint. Shows what the query will look like after materialization, including range pair detection and bucket functions.
- Lua path
app.integrations.posthog.endpointsmaterializationpreviewcreate- Full name
posthog.posthog_endpointsmaterializationpreviewcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
endpointsmaterializationstatusretrieve Read
Get materialization status for an endpoint. Supports ?version=N query param.
- Lua path
app.integrations.posthog.endpointsmaterializationstatusretrieve- Full name
posthog.posthog_endpointsmaterializationstatusretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
endpointsopenapi_jsonretrieve Read
Get OpenAPI 3.0 specification for this endpoint. Use this to generate typed SDK clients.
- Lua path
app.integrations.posthog.endpointsopenapi_jsonretrieve- Full name
posthog.posthog_endpointsopenapi_jsonretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
endpointsrunretrieve Read
Execute endpoint with optional materialization. Supports version parameter, runs latest version if not set.
- Lua path
app.integrations.posthog.endpointsrunretrieve- Full name
posthog.posthog_endpointsrunretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
endpointsruncreate Write
Execute endpoint with optional materialization. Supports version parameter, runs latest version if not set.
- Lua path
app.integrations.posthog.endpointsruncreate- Full name
posthog.posthog_endpointsruncreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
endpointsversionslist Read
List all versions for an endpoint.
- Lua path
app.integrations.posthog.endpointsversionslist- Full name
posthog.posthog_endpointsversionslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
endpointslastexecutiontimescreate Write
Get the last execution times in the past 6 months for multiple endpoints.
- Lua path
app.integrations.posthog.endpointslastexecutiontimescreate- Full name
posthog.posthog_endpointslastexecutiontimescreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentslist Read
Deprecated: use /api/environments/{id}/ instead.
- Lua path
app.integrations.posthog.environmentslist- Full name
posthog.posthog_environmentslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentscreate Write
Deprecated: use /api/environments/{id}/ instead.
- Lua path
app.integrations.posthog.environmentscreate- Full name
posthog.posthog_environmentscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsretrieve Read
Deprecated: use /api/environments/{id}/ instead.
- Lua path
app.integrations.posthog.environmentsretrieve- Full name
posthog.posthog_environmentsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsupdate Write
Deprecated: use /api/environments/{id}/ instead.
- Lua path
app.integrations.posthog.environmentsupdate- Full name
posthog.posthog_environmentsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentspartialupdate Write
Deprecated: use /api/environments/{id}/ instead.
- Lua path
app.integrations.posthog.environmentspartialupdate- Full name
posthog.posthog_environmentspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdestroy Write
Deprecated: use /api/environments/{id}/ instead.
- Lua path
app.integrations.posthog.environmentsdestroy- Full name
posthog.posthog_environmentsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsactivityretrieve Read
Deprecated: use /api/environments/{id}/ instead.
- Lua path
app.integrations.posthog.environmentsactivityretrieve- Full name
posthog.posthog_environmentsactivityretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsaddproductintentpartialupdate Write
Deprecated: use /api/environments/{id}/ instead.
- Lua path
app.integrations.posthog.environmentsaddproductintentpartialupdate- Full name
posthog.posthog_environmentsaddproductintentpartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentscompleteproductonboardingpartialupdate Write
Deprecated: use /api/environments/{id}/ instead.
- Lua path
app.integrations.posthog.environmentscompleteproductonboardingpartialupdate- Full name
posthog.posthog_environmentscompleteproductonboardingpartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdefaultevaluationcontextsretrieve Read
Manage default evaluation contexts for a team.
- Lua path
app.integrations.posthog.environmentsdefaultevaluationcontextsretrieve- Full name
posthog.posthog_environmentsdefaultevaluationcontextsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdefaultevaluationcontextscreate Write
Manage default evaluation contexts for a team.
- Lua path
app.integrations.posthog.environmentsdefaultevaluationcontextscreate- Full name
posthog.posthog_environmentsdefaultevaluationcontextscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdefaultevaluationcontextsdestroy Write
Manage default evaluation contexts for a team.
- Lua path
app.integrations.posthog.environmentsdefaultevaluationcontextsdestroy- Full name
posthog.posthog_environmentsdefaultevaluationcontextsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdefaultreleaseconditionsretrieve Read
Manage default release conditions for new feature flags in this team.
- Lua path
app.integrations.posthog.environmentsdefaultreleaseconditionsretrieve- Full name
posthog.posthog_environmentsdefaultreleaseconditionsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdefaultreleaseconditionsupdate Write
Manage default release conditions for new feature flags in this team.
- Lua path
app.integrations.posthog.environmentsdefaultreleaseconditionsupdate- Full name
posthog.posthog_environmentsdefaultreleaseconditionsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsdeletesecrettokenbackuppartialupdate Write
Deprecated: use /api/environments/{id}/ instead.
- Lua path
app.integrations.posthog.environmentsdeletesecrettokenbackuppartialupdate- Full name
posthog.posthog_environmentsdeletesecrettokenbackuppartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentseventingestionrestrictionsretrieve Read
Deprecated: use /api/environments/{id}/ instead.
- Lua path
app.integrations.posthog.environmentseventingestionrestrictionsretrieve- Full name
posthog.posthog_environmentseventingestionrestrictionsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsexperimentsconfigretrieve Read
Manage experiment configuration for this environment.
- Lua path
app.integrations.posthog.environmentsexperimentsconfigretrieve- Full name
posthog.posthog_environmentsexperimentsconfigretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsexperimentsconfigpartialupdate Write
Manage experiment configuration for this environment.
- Lua path
app.integrations.posthog.environmentsexperimentsconfigpartialupdate- Full name
posthog.posthog_environmentsexperimentsconfigpartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsgenerateconversationspublictokencreate Write
Deprecated: use /api/environments/{id}/ instead.
- Lua path
app.integrations.posthog.environmentsgenerateconversationspublictokencreate- Full name
posthog.posthog_environmentsgenerateconversationspublictokencreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsisgeneratingdemodataretrieve Read
Deprecated: use /api/environments/{id}/ instead.
- Lua path
app.integrations.posthog.environmentsisgeneratingdemodataretrieve- Full name
posthog.posthog_environmentsisgeneratingdemodataretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsresettokenpartialupdate Write
Deprecated: use /api/environments/{id}/ instead.
- Lua path
app.integrations.posthog.environmentsresettokenpartialupdate- Full name
posthog.posthog_environmentsresettokenpartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentsrotatesecrettokenpartialupdate Write
Deprecated: use /api/environments/{id}/ instead.
- Lua path
app.integrations.posthog.environmentsrotatesecrettokenpartialupdate- Full name
posthog.posthog_environmentsrotatesecrettokenpartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
environmentssettingsasofretrieve Read
Return the team settings as of the provided timestamp. Query params: - at: ISO8601 datetime (required) - scope: optional, one or multiple keys to filter the returned settings
- Lua path
app.integrations.posthog.environmentssettingsasofretrieve- Full name
posthog.posthog_environmentssettingsasofretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingreleaseslist Read
Errortrackingreleaseslist
- Lua path
app.integrations.posthog.errortrackingreleaseslist- Full name
posthog.posthog_errortrackingreleaseslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingreleasescreate Write
Errortrackingreleasescreate
- Lua path
app.integrations.posthog.errortrackingreleasescreate- Full name
posthog.posthog_errortrackingreleasescreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingreleasesretrieve Read
Errortrackingreleasesretrieve
- Lua path
app.integrations.posthog.errortrackingreleasesretrieve- Full name
posthog.posthog_errortrackingreleasesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingreleasesupdate Write
Errortrackingreleasesupdate
- Lua path
app.integrations.posthog.errortrackingreleasesupdate- Full name
posthog.posthog_errortrackingreleasesupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingreleasespartialupdate Write
Errortrackingreleasespartialupdate
- Lua path
app.integrations.posthog.errortrackingreleasespartialupdate- Full name
posthog.posthog_errortrackingreleasespartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingreleasesdestroy Write
Errortrackingreleasesdestroy
- Lua path
app.integrations.posthog.errortrackingreleasesdestroy- Full name
posthog.posthog_errortrackingreleasesdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingreleaseshashretrieve Read
Errortrackingreleaseshashretrieve
- Lua path
app.integrations.posthog.errortrackingreleaseshashretrieve- Full name
posthog.posthog_errortrackingreleaseshashretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingsymbolsetslist Read
Errortrackingsymbolsetslist
- Lua path
app.integrations.posthog.errortrackingsymbolsetslist- Full name
posthog.posthog_errortrackingsymbolsetslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingsymbolsetscreate Write
Errortrackingsymbolsetscreate
- Lua path
app.integrations.posthog.errortrackingsymbolsetscreate- Full name
posthog.posthog_errortrackingsymbolsetscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingsymbolsetsretrieve Read
Errortrackingsymbolsetsretrieve
- Lua path
app.integrations.posthog.errortrackingsymbolsetsretrieve- Full name
posthog.posthog_errortrackingsymbolsetsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingsymbolsetsupdate Write
Errortrackingsymbolsetsupdate
- Lua path
app.integrations.posthog.errortrackingsymbolsetsupdate- Full name
posthog.posthog_errortrackingsymbolsetsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingsymbolsetspartialupdate Write
Errortrackingsymbolsetspartialupdate
- Lua path
app.integrations.posthog.errortrackingsymbolsetspartialupdate- Full name
posthog.posthog_errortrackingsymbolsetspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingsymbolsetsdestroy Write
Errortrackingsymbolsetsdestroy
- Lua path
app.integrations.posthog.errortrackingsymbolsetsdestroy- Full name
posthog.posthog_errortrackingsymbolsetsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingsymbolsetsdownloadretrieve Read
Return a presigned URL for downloading the symbol set's source map.
- Lua path
app.integrations.posthog.errortrackingsymbolsetsdownloadretrieve- Full name
posthog.posthog_errortrackingsymbolsetsdownloadretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingsymbolsetsfinishuploadupdate Write
Errortrackingsymbolsetsfinishuploadupdate
- Lua path
app.integrations.posthog.errortrackingsymbolsetsfinishuploadupdate- Full name
posthog.posthog_errortrackingsymbolsetsfinishuploadupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingsymbolsetsbulkdeletecreate Write
Errortrackingsymbolsetsbulkdeletecreate
- Lua path
app.integrations.posthog.errortrackingsymbolsetsbulkdeletecreate- Full name
posthog.posthog_errortrackingsymbolsetsbulkdeletecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingsymbolsetsbulkfinishuploadcreate Write
Errortrackingsymbolsetsbulkfinishuploadcreate
- Lua path
app.integrations.posthog.errortrackingsymbolsetsbulkfinishuploadcreate- Full name
posthog.posthog_errortrackingsymbolsetsbulkfinishuploadcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingsymbolsetsbulkstartuploadcreate Write
Errortrackingsymbolsetsbulkstartuploadcreate
- Lua path
app.integrations.posthog.errortrackingsymbolsetsbulkstartuploadcreate- Full name
posthog.posthog_errortrackingsymbolsetsbulkstartuploadcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
errortrackingsymbolsetsstartuploadcreate Write
Errortrackingsymbolsetsstartuploadcreate
- Lua path
app.integrations.posthog.errortrackingsymbolsetsstartuploadcreate- Full name
posthog.posthog_errortrackingsymbolsetsstartuploadcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
eventdefinitionslist Read
Eventdefinitionslist
- Lua path
app.integrations.posthog.eventdefinitionslist- Full name
posthog.posthog_eventdefinitionslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
eventdefinitionscreate Write
Eventdefinitionscreate
- Lua path
app.integrations.posthog.eventdefinitionscreate- Full name
posthog.posthog_eventdefinitionscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
eventdefinitionsretrieve Read
Eventdefinitionsretrieve
- Lua path
app.integrations.posthog.eventdefinitionsretrieve- Full name
posthog.posthog_eventdefinitionsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
eventdefinitionsupdate Write
Eventdefinitionsupdate
- Lua path
app.integrations.posthog.eventdefinitionsupdate- Full name
posthog.posthog_eventdefinitionsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
eventdefinitionspartialupdate Write
Eventdefinitionspartialupdate
- Lua path
app.integrations.posthog.eventdefinitionspartialupdate- Full name
posthog.posthog_eventdefinitionspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
eventdefinitionsdestroy Write
Eventdefinitionsdestroy
- Lua path
app.integrations.posthog.eventdefinitionsdestroy- Full name
posthog.posthog_eventdefinitionsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
eventdefinitionsmetricsretrieve Read
Eventdefinitionsmetricsretrieve
- Lua path
app.integrations.posthog.eventdefinitionsmetricsretrieve- Full name
posthog.posthog_eventdefinitionsmetricsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
eventdefinitionsbulkupdatetagscreate Write
Bulk update tags on multiple objects. Accepts: - {"ids": [...], "action": "add"|"remove"|"set", "tags": ["tag1", "tag2"]} Actions: - "add": Add tags to existing tags on each object - "remove": Remove specific tags from each object - "set": Replace all tags...
- Lua path
app.integrations.posthog.eventdefinitionsbulkupdatetagscreate- Full name
posthog.posthog_eventdefinitionsbulkupdatetagscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
eventdefinitionsbynameretrieve Read
Get event definition by exact name
- Lua path
app.integrations.posthog.eventdefinitionsbynameretrieve- Full name
posthog.posthog_eventdefinitionsbynameretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
eventdefinitionsgolangretrieve Read
Eventdefinitionsgolangretrieve
- Lua path
app.integrations.posthog.eventdefinitionsgolangretrieve- Full name
posthog.posthog_eventdefinitionsgolangretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
eventdefinitionsprimarypropertiesretrieve Read
Resolve team-configured primary properties for event definitions. The response only contains entries where a non-null primaryproperty is set on the EventDefinition. Callers should fall back to the core taxonomy defaults client-side for names not present in...
- Lua path
app.integrations.posthog.eventdefinitionsprimarypropertiesretrieve- Full name
posthog.posthog_eventdefinitionsprimarypropertiesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
eventdefinitionspythonretrieve Read
Eventdefinitionspythonretrieve
- Lua path
app.integrations.posthog.eventdefinitionspythonretrieve- Full name
posthog.posthog_eventdefinitionspythonretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
eventdefinitionstypescriptretrieve Read
Eventdefinitionstypescriptretrieve
- Lua path
app.integrations.posthog.eventdefinitionstypescriptretrieve- Full name
posthog.posthog_eventdefinitionstypescriptretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
eventschemaslist Read
Eventschemaslist
- Lua path
app.integrations.posthog.eventschemaslist- Full name
posthog.posthog_eventschemaslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
eventschemascreate Write
Eventschemascreate
- Lua path
app.integrations.posthog.eventschemascreate- Full name
posthog.posthog_eventschemascreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
eventschemasupdate Write
Eventschemasupdate
- Lua path
app.integrations.posthog.eventschemasupdate- Full name
posthog.posthog_eventschemasupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
eventschemaspartialupdate Write
Eventschemaspartialupdate
- Lua path
app.integrations.posthog.eventschemaspartialupdate- Full name
posthog.posthog_eventschemaspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
eventschemasdestroy Write
Eventschemasdestroy
- Lua path
app.integrations.posthog.eventschemasdestroy- Full name
posthog.posthog_eventschemasdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
eventslist Read
This endpoint allows you to list and filter events. It is effectively deprecated and is kept only for backwards compatibility. If you ever ask about it you will be advised to not use it... If you want to ad-hoc list or aggregate events, use the Query endpoi...
- Lua path
app.integrations.posthog.eventslist- Full name
posthog.posthog_eventslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
eventsretrieve Read
Eventsretrieve
- Lua path
app.integrations.posthog.eventsretrieve- Full name
posthog.posthog_eventsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
eventsvaluesretrieve Read
Eventsvaluesretrieve
- Lua path
app.integrations.posthog.eventsvaluesretrieve- Full name
posthog.posthog_eventsvaluesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
experimentholdoutslist Read
Experimentholdoutslist
- Lua path
app.integrations.posthog.experimentholdoutslist- Full name
posthog.posthog_experimentholdoutslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
experimentholdoutscreate Write
Experimentholdoutscreate
- Lua path
app.integrations.posthog.experimentholdoutscreate- Full name
posthog.posthog_experimentholdoutscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
experimentholdoutsretrieve Read
Experimentholdoutsretrieve
- Lua path
app.integrations.posthog.experimentholdoutsretrieve- Full name
posthog.posthog_experimentholdoutsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
experimentholdoutsupdate Write
Experimentholdoutsupdate
- Lua path
app.integrations.posthog.experimentholdoutsupdate- Full name
posthog.posthog_experimentholdoutsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
experimentholdoutspartialupdate Write
Experimentholdoutspartialupdate
- Lua path
app.integrations.posthog.experimentholdoutspartialupdate- Full name
posthog.posthog_experimentholdoutspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
experimentholdoutsdestroy Write
Experimentholdoutsdestroy
- Lua path
app.integrations.posthog.experimentholdoutsdestroy- Full name
posthog.posthog_experimentholdoutsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
experimentsavedmetricslist Read
Experimentsavedmetricslist
- Lua path
app.integrations.posthog.experimentsavedmetricslist- Full name
posthog.posthog_experimentsavedmetricslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
experimentsavedmetricscreate Write
Experimentsavedmetricscreate
- Lua path
app.integrations.posthog.experimentsavedmetricscreate- Full name
posthog.posthog_experimentsavedmetricscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
experimentsavedmetricsretrieve Read
Experimentsavedmetricsretrieve
- Lua path
app.integrations.posthog.experimentsavedmetricsretrieve- Full name
posthog.posthog_experimentsavedmetricsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
experimentsavedmetricsupdate Write
Experimentsavedmetricsupdate
- Lua path
app.integrations.posthog.experimentsavedmetricsupdate- Full name
posthog.posthog_experimentsavedmetricsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
experimentsavedmetricspartialupdate Write
Experimentsavedmetricspartialupdate
- Lua path
app.integrations.posthog.experimentsavedmetricspartialupdate- Full name
posthog.posthog_experimentsavedmetricspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
experimentsavedmetricsdestroy Write
Experimentsavedmetricsdestroy
- Lua path
app.integrations.posthog.experimentsavedmetricsdestroy- Full name
posthog.posthog_experimentsavedmetricsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
experimentslist Read
List experiments for the current project. Supports filtering by status and archival state.
- Lua path
app.integrations.posthog.experimentslist- Full name
posthog.posthog_experimentslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
experimentscreate Write
Create a new experiment in draft status with optional metrics.
- Lua path
app.integrations.posthog.experimentscreate- Full name
posthog.posthog_experimentscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
experimentsretrieve Read
Retrieve a single experiment by ID, including its current status, metrics, feature flag, and results metadata.
- Lua path
app.integrations.posthog.experimentsretrieve- Full name
posthog.posthog_experimentsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
experimentsupdate Write
Mixin for ViewSets to handle ApprovalRequired exceptions from decorated serializers. This mixin intercepts ApprovalRequired exceptions raised by the @approvalgate decorator on serializer methods and converts them into proper HTTP 409 Conflict responses with...
- Lua path
app.integrations.posthog.experimentsupdate- Full name
posthog.posthog_experimentsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
experimentspartialupdate Write
Update an experiment. Use this to modify experiment properties such as name, description, metrics, variants, and configuration. Metrics can be added, changed and removed at any time.
- Lua path
app.integrations.posthog.experimentspartialupdate- Full name
posthog.posthog_experimentspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
experimentsdestroy Write
Hard delete of this model is not allowed. Use a patch API call to set "deleted" to true
- Lua path
app.integrations.posthog.experimentsdestroy- Full name
posthog.posthog_experimentsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
experimentsarchivecreate Write
Archive an ended experiment. Hides the experiment from the default list view. The experiment can be restored at any time by updating archived=false. Returns 400 if the experiment is already archived or has not ended yet.
- Lua path
app.integrations.posthog.experimentsarchivecreate- Full name
posthog.posthog_experimentsarchivecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
experimentscopytoprojectcreate Write
Mixin for ViewSets to handle ApprovalRequired exceptions from decorated serializers. This mixin intercepts ApprovalRequired exceptions raised by the @approvalgate decorator on serializer methods and converts them into proper HTTP 409 Conflict responses with...
- Lua path
app.integrations.posthog.experimentscopytoprojectcreate- Full name
posthog.posthog_experimentscopytoprojectcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
experimentscreateexposurecohortforexperimentcreate Write
Mixin for ViewSets to handle ApprovalRequired exceptions from decorated serializers. This mixin intercepts ApprovalRequired exceptions raised by the @approvalgate decorator on serializer methods and converts them into proper HTTP 409 Conflict responses with...
- Lua path
app.integrations.posthog.experimentscreateexposurecohortforexperimentcreate- Full name
posthog.posthog_experimentscreateexposurecohortforexperimentcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
experimentsduplicatecreate Write
Mixin for ViewSets to handle ApprovalRequired exceptions from decorated serializers. This mixin intercepts ApprovalRequired exceptions raised by the @approvalgate decorator on serializer methods and converts them into proper HTTP 409 Conflict responses with...
- Lua path
app.integrations.posthog.experimentsduplicatecreate- Full name
posthog.posthog_experimentsduplicatecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
experimentsendcreate Write
End a running experiment without shipping a variant. Sets enddate to now and marks the experiment as stopped. The feature flag is NOT modified - users continue to see their assigned variants and exposure events ($featureflagcalled) continue to be recorded....
- Lua path
app.integrations.posthog.experimentsendcreate- Full name
posthog.posthog_experimentsendcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
experimentslaunchcreate Write
Launch a draft experiment. Validates the experiment is in draft state, activates its linked feature flag, sets startdate to the current server time, and transitions the experiment to running. Returns 400 if the experiment has already been launched or if the...
- Lua path
app.integrations.posthog.experimentslaunchcreate- Full name
posthog.posthog_experimentslaunchcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
experimentspausecreate Write
Pause a running experiment. Deactivates the linked feature flag so it is no longer returned by the /decide endpoint. Users fall back to the application default (typically the control experience), and no new exposure events are recorded (i.e. $featureflagcal...
- Lua path
app.integrations.posthog.experimentspausecreate- Full name
posthog.posthog_experimentspausecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
experimentsrecalculatetimeseriescreate Write
Mixin for ViewSets to handle ApprovalRequired exceptions from decorated serializers. This mixin intercepts ApprovalRequired exceptions raised by the @approvalgate decorator on serializer methods and converts them into proper HTTP 409 Conflict responses with...
- Lua path
app.integrations.posthog.experimentsrecalculatetimeseriescreate- Full name
posthog.posthog_experimentsrecalculatetimeseriescreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
experimentsresetcreate Write
Reset an experiment back to draft state. Clears start/end dates, conclusion, and archived flag. The feature flag is left unchanged - users continue to see their assigned variants. Previously collected events still exist but won't be included in results unle...
- Lua path
app.integrations.posthog.experimentsresetcreate- Full name
posthog.posthog_experimentsresetcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
experimentsresumecreate Write
Resume a paused experiment. Reactivates the linked feature flag so it is returned by /decide again. Users are re-bucketed deterministically into the same variants they had before the pause, and exposure tracking resumes. Returns 400 if the experiment is not...
- Lua path
app.integrations.posthog.experimentsresumecreate- Full name
posthog.posthog_experimentsresumecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
experimentsshipvariantcreate Write
Ship a variant to 100% of users and (optionally) end the experiment. Rewrites the feature flag so that the selected variant is served to everyone. Existing release conditions (flag groups) are preserved so the change can be rolled back by deleting the auto-...
- Lua path
app.integrations.posthog.experimentsshipvariantcreate- Full name
posthog.posthog_experimentsshipvariantcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
experimentstimeseriesresultsretrieve Read
Mixin for ViewSets to handle ApprovalRequired exceptions from decorated serializers. This mixin intercepts ApprovalRequired exceptions raised by the @approvalgate decorator on serializer methods and converts them into proper HTTP 409 Conflict responses with...
- Lua path
app.integrations.posthog.experimentstimeseriesresultsretrieve- Full name
posthog.posthog_experimentstimeseriesresultsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
experimentsunarchivecreate Write
Unarchive an archived experiment. Restores the experiment to the default list view. Returns 400 if the experiment is not currently archived.
- Lua path
app.integrations.posthog.experimentsunarchivecreate- Full name
posthog.posthog_experimentsunarchivecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
experimentseligiblefeatureflagsretrieve Read
Returns a paginated list of feature flags eligible for use in experiments. Eligible flags must: - Be multivariate with at least 2 variants - Have "control" as the first variant key Query parameters: - search: Filter by flag key or name (case insensitive) -...
- Lua path
app.integrations.posthog.experimentseligiblefeatureflagsretrieve- Full name
posthog.posthog_experimentseligiblefeatureflagsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
experimentsrequiresflagimplementationretrieve Read
Mixin for ViewSets to handle ApprovalRequired exceptions from decorated serializers. This mixin intercepts ApprovalRequired exceptions raised by the @approvalgate decorator on serializer methods and converts them into proper HTTP 409 Conflict responses with...
- Lua path
app.integrations.posthog.experimentsrequiresflagimplementationretrieve- Full name
posthog.posthog_experimentsrequiresflagimplementationretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
experimentsstatsretrieve Read
Mixin for ViewSets to handle ApprovalRequired exceptions from decorated serializers. This mixin intercepts ApprovalRequired exceptions raised by the @approvalgate decorator on serializer methods and converts them into proper HTTP 409 Conflict responses with...
- Lua path
app.integrations.posthog.experimentsstatsretrieve- Full name
posthog.posthog_experimentsstatsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
exportslist Read
Exportslist
- Lua path
app.integrations.posthog.exportslist- Full name
posthog.posthog_exportslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
exportscreate Write
Exportscreate
- Lua path
app.integrations.posthog.exportscreate- Full name
posthog.posthog_exportscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
exportsretrieve Read
Exportsretrieve
- Lua path
app.integrations.posthog.exportsretrieve- Full name
posthog.posthog_exportsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
exportscontentretrieve Read
Exportscontentretrieve
- Lua path
app.integrations.posthog.exportscontentretrieve- Full name
posthog.posthog_exportscontentretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
externaldataschemaslist Read
Externaldataschemaslist
- Lua path
app.integrations.posthog.externaldataschemaslist- Full name
posthog.posthog_externaldataschemaslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
externaldataschemascreate Write
Externaldataschemascreate
- Lua path
app.integrations.posthog.externaldataschemascreate- Full name
posthog.posthog_externaldataschemascreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
externaldataschemasretrieve Read
Externaldataschemasretrieve
- Lua path
app.integrations.posthog.externaldataschemasretrieve- Full name
posthog.posthog_externaldataschemasretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
externaldataschemasupdate Write
Externaldataschemasupdate
- Lua path
app.integrations.posthog.externaldataschemasupdate- Full name
posthog.posthog_externaldataschemasupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
externaldataschemaspartialupdate Write
Externaldataschemaspartialupdate
- Lua path
app.integrations.posthog.externaldataschemaspartialupdate- Full name
posthog.posthog_externaldataschemaspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
externaldataschemasdestroy Write
Externaldataschemasdestroy
- Lua path
app.integrations.posthog.externaldataschemasdestroy- Full name
posthog.posthog_externaldataschemasdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
externaldataschemascancelcreate Write
Externaldataschemascancelcreate
- Lua path
app.integrations.posthog.externaldataschemascancelcreate- Full name
posthog.posthog_externaldataschemascancelcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
externaldataschemasdeletedatadestroy Write
Externaldataschemasdeletedatadestroy
- Lua path
app.integrations.posthog.externaldataschemasdeletedatadestroy- Full name
posthog.posthog_externaldataschemasdeletedatadestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
externaldataschemasincrementalfieldscreate Write
Externaldataschemasincrementalfieldscreate
- Lua path
app.integrations.posthog.externaldataschemasincrementalfieldscreate- Full name
posthog.posthog_externaldataschemasincrementalfieldscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
externaldataschemasreloadcreate Write
Externaldataschemasreloadcreate
- Lua path
app.integrations.posthog.externaldataschemasreloadcreate- Full name
posthog.posthog_externaldataschemasreloadcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
externaldataschemasresynccreate Write
Externaldataschemasresynccreate
- Lua path
app.integrations.posthog.externaldataschemasresynccreate- Full name
posthog.posthog_externaldataschemasresynccreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
externaldatasourceslist Read
Create, Read, Update and Delete External data Sources.
- Lua path
app.integrations.posthog.externaldatasourceslist- Full name
posthog.posthog_externaldatasourceslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
externaldatasourcescreate Write
Create, Read, Update and Delete External data Sources.
- Lua path
app.integrations.posthog.externaldatasourcescreate- Full name
posthog.posthog_externaldatasourcescreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
externaldatasourcesretrieve Read
Create, Read, Update and Delete External data Sources.
- Lua path
app.integrations.posthog.externaldatasourcesretrieve- Full name
posthog.posthog_externaldatasourcesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
externaldatasourcesupdate Write
Create, Read, Update and Delete External data Sources.
- Lua path
app.integrations.posthog.externaldatasourcesupdate- Full name
posthog.posthog_externaldatasourcesupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
externaldatasourcespartialupdate Write
Create, Read, Update and Delete External data Sources.
- Lua path
app.integrations.posthog.externaldatasourcespartialupdate- Full name
posthog.posthog_externaldatasourcespartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
externaldatasourcesdestroy Write
Create, Read, Update and Delete External data Sources.
- Lua path
app.integrations.posthog.externaldatasourcesdestroy- Full name
posthog.posthog_externaldatasourcesdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
externaldatasourcesbulkupdateschemaspartialupdate Write
Create, Read, Update and Delete External data Sources.
- Lua path
app.integrations.posthog.externaldatasourcesbulkupdateschemaspartialupdate- Full name
posthog.posthog_externaldatasourcesbulkupdateschemaspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
externaldatasourcescreatewebhookcreate Write
Create, Read, Update and Delete External data Sources.
- Lua path
app.integrations.posthog.externaldatasourcescreatewebhookcreate- Full name
posthog.posthog_externaldatasourcescreatewebhookcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
externaldatasourcesdeletewebhookcreate Write
Create, Read, Update and Delete External data Sources.
- Lua path
app.integrations.posthog.externaldatasourcesdeletewebhookcreate- Full name
posthog.posthog_externaldatasourcesdeletewebhookcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
externaldatasourcesjobsretrieve Read
Create, Read, Update and Delete External data Sources.
- Lua path
app.integrations.posthog.externaldatasourcesjobsretrieve- Full name
posthog.posthog_externaldatasourcesjobsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
externaldatasourcesrefreshschemascreate Write
Fetch current schema/table list from the source and create any new ExternalDataSchema rows (no data sync).
- Lua path
app.integrations.posthog.externaldatasourcesrefreshschemascreate- Full name
posthog.posthog_externaldatasourcesrefreshschemascreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
externaldatasourcesreloadcreate Write
Create, Read, Update and Delete External data Sources.
- Lua path
app.integrations.posthog.externaldatasourcesreloadcreate- Full name
posthog.posthog_externaldatasourcesreloadcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
externaldatasourcesrevenueanalyticsconfigpartialupdate Write
Update the revenue analytics configuration and return the full external data source.
- Lua path
app.integrations.posthog.externaldatasourcesrevenueanalyticsconfigpartialupdate- Full name
posthog.posthog_externaldatasourcesrevenueanalyticsconfigpartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
externaldatasourcesupdatewebhookinputscreate Write
Create, Read, Update and Delete External data Sources.
- Lua path
app.integrations.posthog.externaldatasourcesupdatewebhookinputscreate- Full name
posthog.posthog_externaldatasourcesupdatewebhookinputscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
externaldatasourceswebhookinforetrieve Read
Create, Read, Update and Delete External data Sources.
- Lua path
app.integrations.posthog.externaldatasourceswebhookinforetrieve- Full name
posthog.posthog_externaldatasourceswebhookinforetrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
externaldatasourcescheckcdcprerequisitescreate Write
Validate CDC prerequisites against a live Postgres connection. Used by the source wizard to surface / checks before source creation, and by the self-managed setup popup to verify user-created publications.
- Lua path
app.integrations.posthog.externaldatasourcescheckcdcprerequisitescreate- Full name
posthog.posthog_externaldatasourcescheckcdcprerequisitescreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
externaldatasourcesconnectionslist Read
Create, Read, Update and Delete External data Sources.
- Lua path
app.integrations.posthog.externaldatasourcesconnectionslist- Full name
posthog.posthog_externaldatasourcesconnectionslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
externaldatasourcesdatabaseschemacreate Write
Create, Read, Update and Delete External data Sources.
- Lua path
app.integrations.posthog.externaldatasourcesdatabaseschemacreate- Full name
posthog.posthog_externaldatasourcesdatabaseschemacreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
externaldatasourcessourceprefixcreate Write
Create, Read, Update and Delete External data Sources.
- Lua path
app.integrations.posthog.externaldatasourcessourceprefixcreate- Full name
posthog.posthog_externaldatasourcessourceprefixcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
externaldatasourceswizardretrieve Read
Create, Read, Update and Delete External data Sources.
- Lua path
app.integrations.posthog.externaldatasourceswizardretrieve- Full name
posthog.posthog_externaldatasourceswizardretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featureflagslist Read
Create, read, update and delete feature flags. [See docs](https://posthog.com/docs/feature-flags) for more information on feature flags. If you're looking to use feature flags on your application, you can either use our JavaScript Library or our dedicated e...
- Lua path
app.integrations.posthog.featureflagslist- Full name
posthog.posthog_featureflagslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featureflagscreate Write
Create, read, update and delete feature flags. [See docs](https://posthog.com/docs/feature-flags) for more information on feature flags. If you're looking to use feature flags on your application, you can either use our JavaScript Library or our dedicated e...
- Lua path
app.integrations.posthog.featureflagscreate- Full name
posthog.posthog_featureflagscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featureflagsretrieve Read
Create, read, update and delete feature flags. [See docs](https://posthog.com/docs/feature-flags) for more information on feature flags. If you're looking to use feature flags on your application, you can either use our JavaScript Library or our dedicated e...
- Lua path
app.integrations.posthog.featureflagsretrieve- Full name
posthog.posthog_featureflagsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featureflagsupdate Write
Create, read, update and delete feature flags. [See docs](https://posthog.com/docs/feature-flags) for more information on feature flags. If you're looking to use feature flags on your application, you can either use our JavaScript Library or our dedicated e...
- Lua path
app.integrations.posthog.featureflagsupdate- Full name
posthog.posthog_featureflagsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featureflagspartialupdate Write
Create, read, update and delete feature flags. [See docs](https://posthog.com/docs/feature-flags) for more information on feature flags. If you're looking to use feature flags on your application, you can either use our JavaScript Library or our dedicated e...
- Lua path
app.integrations.posthog.featureflagspartialupdate- Full name
posthog.posthog_featureflagspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featureflagsdestroy Write
Hard delete of this model is not allowed. Use a patch API call to set "deleted" to true
- Lua path
app.integrations.posthog.featureflagsdestroy- Full name
posthog.posthog_featureflagsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featureflagsactivityretrieve Read
Create, read, update and delete feature flags. [See docs](https://posthog.com/docs/feature-flags) for more information on feature flags. If you're looking to use feature flags on your application, you can either use our JavaScript Library or our dedicated e...
- Lua path
app.integrations.posthog.featureflagsactivityretrieve- Full name
posthog.posthog_featureflagsactivityretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featureflagscreatestaticcohortforflagcreate Write
Create, read, update and delete feature flags. [See docs](https://posthog.com/docs/feature-flags) for more information on feature flags. If you're looking to use feature flags on your application, you can either use our JavaScript Library or our dedicated e...
- Lua path
app.integrations.posthog.featureflagscreatestaticcohortforflagcreate- Full name
posthog.posthog_featureflagscreatestaticcohortforflagcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featureflagsdashboardcreate Write
Create, read, update and delete feature flags. [See docs](https://posthog.com/docs/feature-flags) for more information on feature flags. If you're looking to use feature flags on your application, you can either use our JavaScript Library or our dedicated e...
- Lua path
app.integrations.posthog.featureflagsdashboardcreate- Full name
posthog.posthog_featureflagsdashboardcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featureflagsdependentflagslist Read
Get other active flags that depend on this flag.
- Lua path
app.integrations.posthog.featureflagsdependentflagslist- Full name
posthog.posthog_featureflagsdependentflagslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featureflagsenrichusagedashboardcreate Write
Create, read, update and delete feature flags. [See docs](https://posthog.com/docs/feature-flags) for more information on feature flags. If you're looking to use feature flags on your application, you can either use our JavaScript Library or our dedicated e...
- Lua path
app.integrations.posthog.featureflagsenrichusagedashboardcreate- Full name
posthog.posthog_featureflagsenrichusagedashboardcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featureflagsremoteconfigretrieve Read
Create, read, update and delete feature flags. [See docs](https://posthog.com/docs/feature-flags) for more information on feature flags. If you're looking to use feature flags on your application, you can either use our JavaScript Library or our dedicated e...
- Lua path
app.integrations.posthog.featureflagsremoteconfigretrieve- Full name
posthog.posthog_featureflagsremoteconfigretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featureflagsstatusretrieve Read
Create, read, update and delete feature flags. [See docs](https://posthog.com/docs/feature-flags) for more information on feature flags. If you're looking to use feature flags on your application, you can either use our JavaScript Library or our dedicated e...
- Lua path
app.integrations.posthog.featureflagsstatusretrieve- Full name
posthog.posthog_featureflagsstatusretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featureflagstestevaluationcreate Write
Test feature flag evaluation against a specific user at an optional point in time. This endpoint allows testing how a feature flag would evaluate for a specific user, optionally at a historical timestamp. When a timestamp is provided, both the flag conditio...
- Lua path
app.integrations.posthog.featureflagstestevaluationcreate- Full name
posthog.posthog_featureflagstestevaluationcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featureflagsversionsretrieve Read
Create, read, update and delete feature flags. [See docs](https://posthog.com/docs/feature-flags) for more information on feature flags. If you're looking to use feature flags on your application, you can either use our JavaScript Library or our dedicated e...
- Lua path
app.integrations.posthog.featureflagsversionsretrieve- Full name
posthog.posthog_featureflagsversionsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featureflagsallactivityretrieve Read
Create, read, update and delete feature flags. [See docs](https://posthog.com/docs/feature-flags) for more information on feature flags. If you're looking to use feature flags on your application, you can either use our JavaScript Library or our dedicated e...
- Lua path
app.integrations.posthog.featureflagsallactivityretrieve- Full name
posthog.posthog_featureflagsallactivityretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featureflagsbulkdeletecreate Write
Bulk delete feature flags by filter criteria or explicit IDs. Accepts either: - {"filters": {...}} - Same filter params as list endpoint (search, active, type, etc.) - {"ids": [...]} - Explicit list of flag IDs (no limit) Returns same format as bulkdelete f...
- Lua path
app.integrations.posthog.featureflagsbulkdeletecreate- Full name
posthog.posthog_featureflagsbulkdeletecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featureflagsbulkkeyscreate Write
Get feature flag keys by IDs. Accepts a list of feature flag IDs and returns a mapping of ID to key.
- Lua path
app.integrations.posthog.featureflagsbulkkeyscreate- Full name
posthog.posthog_featureflagsbulkkeyscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featureflagsbulkupdatetagscreate Write
Bulk update tags on multiple objects. Accepts: - {"ids": [...], "action": "add"|"remove"|"set", "tags": ["tag1", "tag2"]} Actions: - "add": Add tags to existing tags on each object - "remove": Remove specific tags from each object - "set": Replace all tags...
- Lua path
app.integrations.posthog.featureflagsbulkupdatetagscreate- Full name
posthog.posthog_featureflagsbulkupdatetagscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featureflagsevaluationreasonsretrieve Read
Create, read, update and delete feature flags. [See docs](https://posthog.com/docs/feature-flags) for more information on feature flags. If you're looking to use feature flags on your application, you can either use our JavaScript Library or our dedicated e...
- Lua path
app.integrations.posthog.featureflagsevaluationreasonsretrieve- Full name
posthog.posthog_featureflagsevaluationreasonsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featureflagslocalevaluationretrieve Read
Create, read, update and delete feature flags. [See docs](https://posthog.com/docs/feature-flags) for more information on feature flags. If you're looking to use feature flags on your application, you can either use our JavaScript Library or our dedicated e...
- Lua path
app.integrations.posthog.featureflagslocalevaluationretrieve- Full name
posthog.posthog_featureflagslocalevaluationretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featureflagsmatchingidsretrieve Read
Get IDs of all feature flags matching the current filters. Uses the same filtering logic as the list endpoint. Returns only IDs that the user has permission to edit.
- Lua path
app.integrations.posthog.featureflagsmatchingidsretrieve- Full name
posthog.posthog_featureflagsmatchingidsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featureflagsmyflagsretrieve Read
Create, read, update and delete feature flags. [See docs](https://posthog.com/docs/feature-flags) for more information on feature flags. If you're looking to use feature flags on your application, you can either use our JavaScript Library or our dedicated e...
- Lua path
app.integrations.posthog.featureflagsmyflagsretrieve- Full name
posthog.posthog_featureflagsmyflagsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
featureflagsuserblastradiuscreate Write
Create, read, update and delete feature flags. [See docs](https://posthog.com/docs/feature-flags) for more information on feature flags. If you're looking to use feature flags on your application, you can either use our JavaScript Library or our dedicated e...
- Lua path
app.integrations.posthog.featureflagsuserblastradiuscreate- Full name
posthog.posthog_featureflagsuserblastradiuscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
filesystemlist Read
Filesystemlist
- Lua path
app.integrations.posthog.filesystemlist- Full name
posthog.posthog_filesystemlist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
filesystemcreate Write
Filesystemcreate
- Lua path
app.integrations.posthog.filesystemcreate- Full name
posthog.posthog_filesystemcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
filesystemretrieve Read
Filesystemretrieve
- Lua path
app.integrations.posthog.filesystemretrieve- Full name
posthog.posthog_filesystemretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
filesystemupdate Write
Filesystemupdate
- Lua path
app.integrations.posthog.filesystemupdate- Full name
posthog.posthog_filesystemupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
filesystempartialupdate Write
Filesystempartialupdate
- Lua path
app.integrations.posthog.filesystempartialupdate- Full name
posthog.posthog_filesystempartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
filesystemdestroy Write
Filesystemdestroy
- Lua path
app.integrations.posthog.filesystemdestroy- Full name
posthog.posthog_filesystemdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
filesystemcountcreate Write
Get count of all files in a folder.
- Lua path
app.integrations.posthog.filesystemcountcreate- Full name
posthog.posthog_filesystemcountcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
filesystemlinkcreate Write
Filesystemlinkcreate
- Lua path
app.integrations.posthog.filesystemlinkcreate- Full name
posthog.posthog_filesystemlinkcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
filesystemmovecreate Write
Filesystemmovecreate
- Lua path
app.integrations.posthog.filesystemmovecreate- Full name
posthog.posthog_filesystemmovecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
filesystemcountbypathcreate Write
Get count of all files in a folder.
- Lua path
app.integrations.posthog.filesystemcountbypathcreate- Full name
posthog.posthog_filesystemcountbypathcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
filesystemlogviewretrieve Read
Filesystemlogviewretrieve
- Lua path
app.integrations.posthog.filesystemlogviewretrieve- Full name
posthog.posthog_filesystemlogviewretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
filesystemlogviewcreate Write
Filesystemlogviewcreate
- Lua path
app.integrations.posthog.filesystemlogviewcreate- Full name
posthog.posthog_filesystemlogviewcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
filesystemundodeletecreate Write
Filesystemundodeletecreate
- Lua path
app.integrations.posthog.filesystemundodeletecreate- Full name
posthog.posthog_filesystemundodeletecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
filesystemunfiledretrieve Read
Filesystemunfiledretrieve
- Lua path
app.integrations.posthog.filesystemunfiledretrieve- Full name
posthog.posthog_filesystemunfiledretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
filesystemshortcutlist Read
Filesystemshortcutlist
- Lua path
app.integrations.posthog.filesystemshortcutlist- Full name
posthog.posthog_filesystemshortcutlist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
filesystemshortcutcreate Write
Filesystemshortcutcreate
- Lua path
app.integrations.posthog.filesystemshortcutcreate- Full name
posthog.posthog_filesystemshortcutcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
filesystemshortcutretrieve Read
Filesystemshortcutretrieve
- Lua path
app.integrations.posthog.filesystemshortcutretrieve- Full name
posthog.posthog_filesystemshortcutretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
filesystemshortcutupdate Write
Filesystemshortcutupdate
- Lua path
app.integrations.posthog.filesystemshortcutupdate- Full name
posthog.posthog_filesystemshortcutupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
filesystemshortcutpartialupdate Write
Filesystemshortcutpartialupdate
- Lua path
app.integrations.posthog.filesystemshortcutpartialupdate- Full name
posthog.posthog_filesystemshortcutpartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
filesystemshortcutdestroy Write
Filesystemshortcutdestroy
- Lua path
app.integrations.posthog.filesystemshortcutdestroy- Full name
posthog.posthog_filesystemshortcutdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
filesystemshortcutreordercreate Write
Set the display order of the current user's shortcuts. orderedids becomes the new top-to-bottom order; any unknown IDs are rejected.
- Lua path
app.integrations.posthog.filesystemshortcutreordercreate- Full name
posthog.posthog_filesystemshortcutreordercreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
flagvaluevaluesretrieve Read
Get possible values for a feature flag. Query parameters: - key: The flag ID (required) Returns: - Array of objects with 'name' field containing possible values
- Lua path
app.integrations.posthog.flagvaluevaluesretrieve- Full name
posthog.posthog_flagvaluevaluesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
groupslist Read
List all groups of a specific group type. You must pass ?grouptypeindex= in the URL. To get a list of valid group types, call /api/:projectid/groupstypes/
- Lua path
app.integrations.posthog.groupslist- Full name
posthog.posthog_groupslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
groupscreate Write
Groupscreate
- Lua path
app.integrations.posthog.groupscreate- Full name
posthog.posthog_groupscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
groupsactivityretrieve Read
Groupsactivityretrieve
- Lua path
app.integrations.posthog.groupsactivityretrieve- Full name
posthog.posthog_groupsactivityretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
groupsdeletepropertycreate Write
Groupsdeletepropertycreate
- Lua path
app.integrations.posthog.groupsdeletepropertycreate- Full name
posthog.posthog_groupsdeletepropertycreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
groupsfindretrieve Read
Groupsfindretrieve
- Lua path
app.integrations.posthog.groupsfindretrieve- Full name
posthog.posthog_groupsfindretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
groupspropertydefinitionsretrieve Read
Groupspropertydefinitionsretrieve
- Lua path
app.integrations.posthog.groupspropertydefinitionsretrieve- Full name
posthog.posthog_groupspropertydefinitionsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
groupspropertyvaluesretrieve Read
Groupspropertyvaluesretrieve
- Lua path
app.integrations.posthog.groupspropertyvaluesretrieve- Full name
posthog.posthog_groupspropertyvaluesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
groupsupdatepropertycreate Write
Groupsupdatepropertycreate
- Lua path
app.integrations.posthog.groupsupdatepropertycreate- Full name
posthog.posthog_groupsupdatepropertycreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
groupstypeslist Read
Groupstypeslist
- Lua path
app.integrations.posthog.groupstypeslist- Full name
posthog.posthog_groupstypeslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
groupstypesdestroy Write
Groupstypesdestroy
- Lua path
app.integrations.posthog.groupstypesdestroy- Full name
posthog.posthog_groupstypesdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
groupstypesmetricslist Read
Groupstypesmetricslist
- Lua path
app.integrations.posthog.groupstypesmetricslist- Full name
posthog.posthog_groupstypesmetricslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
groupstypesmetricscreate Write
Groupstypesmetricscreate
- Lua path
app.integrations.posthog.groupstypesmetricscreate- Full name
posthog.posthog_groupstypesmetricscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
groupstypesmetricsretrieve Read
Groupstypesmetricsretrieve
- Lua path
app.integrations.posthog.groupstypesmetricsretrieve- Full name
posthog.posthog_groupstypesmetricsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
groupstypesmetricsupdate Write
Groupstypesmetricsupdate
- Lua path
app.integrations.posthog.groupstypesmetricsupdate- Full name
posthog.posthog_groupstypesmetricsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
groupstypesmetricspartialupdate Write
Groupstypesmetricspartialupdate
- Lua path
app.integrations.posthog.groupstypesmetricspartialupdate- Full name
posthog.posthog_groupstypesmetricspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
groupstypesmetricsdestroy Write
Groupstypesmetricsdestroy
- Lua path
app.integrations.posthog.groupstypesmetricsdestroy- Full name
posthog.posthog_groupstypesmetricsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
groupstypescreatedetaildashboardupdate Write
Groupstypescreatedetaildashboardupdate
- Lua path
app.integrations.posthog.groupstypescreatedetaildashboardupdate- Full name
posthog.posthog_groupstypescreatedetaildashboardupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
groupstypessetdefaultcolumnsupdate Write
Groupstypessetdefaultcolumnsupdate
- Lua path
app.integrations.posthog.groupstypessetdefaultcolumnsupdate- Full name
posthog.posthog_groupstypessetdefaultcolumnsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
groupstypesupdatemetadatapartialupdate Write
Groupstypesupdatemetadatapartialupdate
- Lua path
app.integrations.posthog.groupstypesupdatemetadatapartialupdate- Full name
posthog.posthog_groupstypesupdatemetadatapartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
heatmapscreenshotscontentretrieve Read
Heatmapscreenshotscontentretrieve
- Lua path
app.integrations.posthog.heatmapscreenshotscontentretrieve- Full name
posthog.posthog_heatmapscreenshotscontentretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
heatmapslist Read
Heatmapslist
- Lua path
app.integrations.posthog.heatmapslist- Full name
posthog.posthog_heatmapslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
heatmapseventsretrieve Read
Heatmapseventsretrieve
- Lua path
app.integrations.posthog.heatmapseventsretrieve- Full name
posthog.posthog_heatmapseventsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
hogflowslist Read
Hogflowslist
- Lua path
app.integrations.posthog.hogflowslist- Full name
posthog.posthog_hogflowslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
hogflowscreate Write
Hogflowscreate
- Lua path
app.integrations.posthog.hogflowscreate- Full name
posthog.posthog_hogflowscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
hogflowsretrieve Read
Hogflowsretrieve
- Lua path
app.integrations.posthog.hogflowsretrieve- Full name
posthog.posthog_hogflowsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
hogflowsupdate Write
Hogflowsupdate
- Lua path
app.integrations.posthog.hogflowsupdate- Full name
posthog.posthog_hogflowsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
hogflowspartialupdate Write
Hogflowspartialupdate
- Lua path
app.integrations.posthog.hogflowspartialupdate- Full name
posthog.posthog_hogflowspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
hogflowsdestroy Write
Hogflowsdestroy
- Lua path
app.integrations.posthog.hogflowsdestroy- Full name
posthog.posthog_hogflowsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
hogflowsbatchjobsretrieve Read
Hogflowsbatchjobsretrieve
- Lua path
app.integrations.posthog.hogflowsbatchjobsretrieve- Full name
posthog.posthog_hogflowsbatchjobsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
hogflowsbatchjobscreate Write
Hogflowsbatchjobscreate
- Lua path
app.integrations.posthog.hogflowsbatchjobscreate- Full name
posthog.posthog_hogflowsbatchjobscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
hogflowsblockedrunsretrieve Read
List workflow runs that were blocked by the dedup bug.
- Lua path
app.integrations.posthog.hogflowsblockedrunsretrieve- Full name
posthog.posthog_hogflowsblockedrunsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
hogflowsinvocationscreate Write
Hogflowsinvocationscreate
- Lua path
app.integrations.posthog.hogflowsinvocationscreate- Full name
posthog.posthog_hogflowsinvocationscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
hogflowslogsretrieve Read
Hogflowslogsretrieve
- Lua path
app.integrations.posthog.hogflowslogsretrieve- Full name
posthog.posthog_hogflowslogsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
hogflowsmetricsretrieve Read
Hogflowsmetricsretrieve
- Lua path
app.integrations.posthog.hogflowsmetricsretrieve- Full name
posthog.posthog_hogflowsmetricsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
hogflowsmetricstotalsretrieve Read
Hogflowsmetricstotalsretrieve
- Lua path
app.integrations.posthog.hogflowsmetricstotalsretrieve- Full name
posthog.posthog_hogflowsmetricstotalsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
hogflowsreplayallblockedrunscreate Write
Replay all blocked runs in a single bulk call to Node.
- Lua path
app.integrations.posthog.hogflowsreplayallblockedrunscreate- Full name
posthog.posthog_hogflowsreplayallblockedrunscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
hogflowsreplayblockedruncreate Write
Replay a single blocked run. Django fetches the event, Node creates the invocation and writes the log.
- Lua path
app.integrations.posthog.hogflowsreplayblockedruncreate- Full name
posthog.posthog_hogflowsreplayblockedruncreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
hogflowsscheduleslist Read
Hogflowsscheduleslist
- Lua path
app.integrations.posthog.hogflowsscheduleslist- Full name
posthog.posthog_hogflowsscheduleslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
hogflowsschedulescreate Write
Hogflowsschedulescreate
- Lua path
app.integrations.posthog.hogflowsschedulescreate- Full name
posthog.posthog_hogflowsschedulescreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
hogflowsschedulespartialupdate Write
Hogflowsschedulespartialupdate
- Lua path
app.integrations.posthog.hogflowsschedulespartialupdate- Full name
posthog.posthog_hogflowsschedulespartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
hogflowsschedulesdestroy Write
Hogflowsschedulesdestroy
- Lua path
app.integrations.posthog.hogflowsschedulesdestroy- Full name
posthog.posthog_hogflowsschedulesdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
hogflowsbulkdeletecreate Write
Hogflowsbulkdeletecreate
- Lua path
app.integrations.posthog.hogflowsbulkdeletecreate- Full name
posthog.posthog_hogflowsbulkdeletecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
hogflowsuserblastradiuscreate Write
Hogflowsuserblastradiuscreate
- Lua path
app.integrations.posthog.hogflowsuserblastradiuscreate- Full name
posthog.posthog_hogflowsuserblastradiuscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
hogfunctiontemplateslist Read
Hogfunctiontemplateslist
- Lua path
app.integrations.posthog.hogfunctiontemplateslist- Full name
posthog.posthog_hogfunctiontemplateslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
hogfunctiontemplatesretrieve Read
Hogfunctiontemplatesretrieve
- Lua path
app.integrations.posthog.hogfunctiontemplatesretrieve- Full name
posthog.posthog_hogfunctiontemplatesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
hogfunctionslist Read
Hogfunctionslist
- Lua path
app.integrations.posthog.hogfunctionslist- Full name
posthog.posthog_hogfunctionslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
hogfunctionscreate Write
Hogfunctionscreate
- Lua path
app.integrations.posthog.hogfunctionscreate- Full name
posthog.posthog_hogfunctionscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
hogfunctionsretrieve Read
Hogfunctionsretrieve
- Lua path
app.integrations.posthog.hogfunctionsretrieve- Full name
posthog.posthog_hogfunctionsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
hogfunctionsupdate Write
Hogfunctionsupdate
- Lua path
app.integrations.posthog.hogfunctionsupdate- Full name
posthog.posthog_hogfunctionsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
hogfunctionspartialupdate Write
Hogfunctionspartialupdate
- Lua path
app.integrations.posthog.hogfunctionspartialupdate- Full name
posthog.posthog_hogfunctionspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
hogfunctionsdestroy Write
Hard delete of this model is not allowed. Use a patch API call to set "deleted" to true
- Lua path
app.integrations.posthog.hogfunctionsdestroy- Full name
posthog.posthog_hogfunctionsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
hogfunctionsenablebackfillscreate Write
Hogfunctionsenablebackfillscreate
- Lua path
app.integrations.posthog.hogfunctionsenablebackfillscreate- Full name
posthog.posthog_hogfunctionsenablebackfillscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
hogfunctionsinvocationscreate Write
Hogfunctionsinvocationscreate
- Lua path
app.integrations.posthog.hogfunctionsinvocationscreate- Full name
posthog.posthog_hogfunctionsinvocationscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
hogfunctionslogsretrieve Read
Hogfunctionslogsretrieve
- Lua path
app.integrations.posthog.hogfunctionslogsretrieve- Full name
posthog.posthog_hogfunctionslogsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
hogfunctionsmetricsretrieve Read
Hogfunctionsmetricsretrieve
- Lua path
app.integrations.posthog.hogfunctionsmetricsretrieve- Full name
posthog.posthog_hogfunctionsmetricsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
hogfunctionsmetricstotalsretrieve Read
Hogfunctionsmetricstotalsretrieve
- Lua path
app.integrations.posthog.hogfunctionsmetricstotalsretrieve- Full name
posthog.posthog_hogfunctionsmetricstotalsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
hogfunctionsiconretrieve Read
Hogfunctionsiconretrieve
- Lua path
app.integrations.posthog.hogfunctionsiconretrieve- Full name
posthog.posthog_hogfunctionsiconretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
hogfunctionsiconsretrieve Read
Hogfunctionsiconsretrieve
- Lua path
app.integrations.posthog.hogfunctionsiconsretrieve- Full name
posthog.posthog_hogfunctionsiconsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
hogfunctionsrearrangepartialupdate Write
Update the execution order of multiple HogFunctions.
- Lua path
app.integrations.posthog.hogfunctionsrearrangepartialupdate- Full name
posthog.posthog_hogfunctionsrearrangepartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
insightvariableslist Read
Insightvariableslist
- Lua path
app.integrations.posthog.insightvariableslist- Full name
posthog.posthog_insightvariableslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
insightvariablescreate Write
Insightvariablescreate
- Lua path
app.integrations.posthog.insightvariablescreate- Full name
posthog.posthog_insightvariablescreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
insightvariablesretrieve Read
Insightvariablesretrieve
- Lua path
app.integrations.posthog.insightvariablesretrieve- Full name
posthog.posthog_insightvariablesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
insightvariablesupdate Write
Insightvariablesupdate
- Lua path
app.integrations.posthog.insightvariablesupdate- Full name
posthog.posthog_insightvariablesupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
insightvariablespartialupdate Write
Insightvariablespartialupdate
- Lua path
app.integrations.posthog.insightvariablespartialupdate- Full name
posthog.posthog_insightvariablespartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
insightvariablesdestroy Write
Insightvariablesdestroy
- Lua path
app.integrations.posthog.insightvariablesdestroy- Full name
posthog.posthog_insightvariablesdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
insightslist Read
DRF ViewSet mixin that gates coalesced responses behind permission checks. The QueryCoalescingMiddleware attaches cached response data to request.META["coalescedresponse"] for followers. This mixin runs DRF's initial() (auth + permissions + throttling) befo...
- Lua path
app.integrations.posthog.insightslist- Full name
posthog.posthog_insightslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
insightscreate Write
DRF ViewSet mixin that gates coalesced responses behind permission checks. The QueryCoalescingMiddleware attaches cached response data to request.META["coalescedresponse"] for followers. This mixin runs DRF's initial() (auth + permissions + throttling) befo...
- Lua path
app.integrations.posthog.insightscreate- Full name
posthog.posthog_insightscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
insightssharinglist Read
Insightssharinglist
- Lua path
app.integrations.posthog.insightssharinglist- Full name
posthog.posthog_insightssharinglist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
insightssharingpasswordscreate Write
Create a new password for the sharing configuration.
- Lua path
app.integrations.posthog.insightssharingpasswordscreate- Full name
posthog.posthog_insightssharingpasswordscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
insightssharingpasswordsdestroy Write
Delete a password from the sharing configuration.
- Lua path
app.integrations.posthog.insightssharingpasswordsdestroy- Full name
posthog.posthog_insightssharingpasswordsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
insightssharingrefreshcreate Write
Insightssharingrefreshcreate
- Lua path
app.integrations.posthog.insightssharingrefreshcreate- Full name
posthog.posthog_insightssharingrefreshcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
insightsthresholdslist Read
Insightsthresholdslist
- Lua path
app.integrations.posthog.insightsthresholdslist- Full name
posthog.posthog_insightsthresholdslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
insightsthresholdsretrieve Read
Insightsthresholdsretrieve
- Lua path
app.integrations.posthog.insightsthresholdsretrieve- Full name
posthog.posthog_insightsthresholdsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
insightsretrieve Read
DRF ViewSet mixin that gates coalesced responses behind permission checks. The QueryCoalescingMiddleware attaches cached response data to request.META["coalescedresponse"] for followers. This mixin runs DRF's initial() (auth + permissions + throttling) befo...
- Lua path
app.integrations.posthog.insightsretrieve- Full name
posthog.posthog_insightsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
insightsupdate Write
DRF ViewSet mixin that gates coalesced responses behind permission checks. The QueryCoalescingMiddleware attaches cached response data to request.META["coalescedresponse"] for followers. This mixin runs DRF's initial() (auth + permissions + throttling) befo...
- Lua path
app.integrations.posthog.insightsupdate- Full name
posthog.posthog_insightsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
insightspartialupdate Write
DRF ViewSet mixin that gates coalesced responses behind permission checks. The QueryCoalescingMiddleware attaches cached response data to request.META["coalescedresponse"] for followers. This mixin runs DRF's initial() (auth + permissions + throttling) befo...
- Lua path
app.integrations.posthog.insightspartialupdate- Full name
posthog.posthog_insightspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
insightsdestroy Write
Hard delete of this model is not allowed. Use a patch API call to set "deleted" to true
- Lua path
app.integrations.posthog.insightsdestroy- Full name
posthog.posthog_insightsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
insightsactivityretrieve Read
Audit trail for a single insight - every change made to it, by whom, and when. Use this when you want the change history of a specific insight; use the project-wide activity endpoint for a broader view.
- Lua path
app.integrations.posthog.insightsactivityretrieve- Full name
posthog.posthog_insightsactivityretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
insightsanalyzeretrieve Read
DRF ViewSet mixin that gates coalesced responses behind permission checks. The QueryCoalescingMiddleware attaches cached response data to request.META["coalescedresponse"] for followers. This mixin runs DRF's initial() (auth + permissions + throttling) befo...
- Lua path
app.integrations.posthog.insightsanalyzeretrieve- Full name
posthog.posthog_insightsanalyzeretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
insightssuggestionsretrieve Read
DRF ViewSet mixin that gates coalesced responses behind permission checks. The QueryCoalescingMiddleware attaches cached response data to request.META["coalescedresponse"] for followers. This mixin runs DRF's initial() (auth + permissions + throttling) befo...
- Lua path
app.integrations.posthog.insightssuggestionsretrieve- Full name
posthog.posthog_insightssuggestionsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
insightssuggestionscreate Write
DRF ViewSet mixin that gates coalesced responses behind permission checks. The QueryCoalescingMiddleware attaches cached response data to request.META["coalescedresponse"] for followers. This mixin runs DRF's initial() (auth + permissions + throttling) befo...
- Lua path
app.integrations.posthog.insightssuggestionscreate- Full name
posthog.posthog_insightssuggestionscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
insightsallactivityretrieve Read
Project-wide audit trail across all insights - who created, edited, deleted, or restored insights, what changed (with before/after diffs), and when. Useful for surfacing what people (or agents) have been working on recently.
- Lua path
app.integrations.posthog.insightsallactivityretrieve- Full name
posthog.posthog_insightsallactivityretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
insightsbulkupdatetagscreate Write
Bulk update tags on multiple objects. Accepts: - {"ids": [...], "action": "add"|"remove"|"set", "tags": ["tag1", "tag2"]} Actions: - "add": Add tags to existing tags on each object - "remove": Remove specific tags from each object - "set": Replace all tags...
- Lua path
app.integrations.posthog.insightsbulkupdatetagscreate- Full name
posthog.posthog_insightsbulkupdatetagscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
insightscancelcreate Write
DRF ViewSet mixin that gates coalesced responses behind permission checks. The QueryCoalescingMiddleware attaches cached response data to request.META["coalescedresponse"] for followers. This mixin runs DRF's initial() (auth + permissions + throttling) befo...
- Lua path
app.integrations.posthog.insightscancelcreate- Full name
posthog.posthog_insightscancelcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
insightsgeneratemetadatacreate Write
Generate an AI-suggested name and description for an insight based on its query configuration.
- Lua path
app.integrations.posthog.insightsgeneratemetadatacreate- Full name
posthog.posthog_insightsgeneratemetadatacreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
insightsmylastviewedretrieve Read
Returns basic details about the last 5 insights viewed by this user. Most recently viewed first.
- Lua path
app.integrations.posthog.insightsmylastviewedretrieve- Full name
posthog.posthog_insightsmylastviewedretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
insightstrendingretrieve Read
Returns insights ranked by view count over the last N days (default 7), highest first. Each result includes the same metadata as the standard insights list, plus a viewcount and up to 3 recent viewers. Useful for surfacing the most-used insights in a project.
- Lua path
app.integrations.posthog.insightstrendingretrieve- Full name
posthog.posthog_insightstrendingretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
insightsviewedcreate Write
Update insight view timestamps. Expects: {"insightids": [1, 2, 3, ...]}
- Lua path
app.integrations.posthog.insightsviewedcreate- Full name
posthog.posthog_insightsviewedcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
integrationslist Read
Integrationslist
- Lua path
app.integrations.posthog.integrationslist- Full name
posthog.posthog_integrationslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
integrationscreate Write
Integrationscreate
- Lua path
app.integrations.posthog.integrationscreate- Full name
posthog.posthog_integrationscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
integrationsretrieve Read
Integrationsretrieve
- Lua path
app.integrations.posthog.integrationsretrieve- Full name
posthog.posthog_integrationsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
integrationsdestroy Write
Integrationsdestroy
- Lua path
app.integrations.posthog.integrationsdestroy- Full name
posthog.posthog_integrationsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
integrationsanthropicmanagedagentenvsretrieve Read
Integrationsanthropicmanagedagentenvsretrieve
- Lua path
app.integrations.posthog.integrationsanthropicmanagedagentenvsretrieve- Full name
posthog.posthog_integrationsanthropicmanagedagentenvsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
integrationsanthropicmanagedagentvaultsretrieve Read
Integrationsanthropicmanagedagentvaultsretrieve
- Lua path
app.integrations.posthog.integrationsanthropicmanagedagentvaultsretrieve- Full name
posthog.posthog_integrationsanthropicmanagedagentvaultsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
integrationsanthropicmanagedagentsretrieve Read
Integrationsanthropicmanagedagentsretrieve
- Lua path
app.integrations.posthog.integrationsanthropicmanagedagentsretrieve- Full name
posthog.posthog_integrationsanthropicmanagedagentsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
integrationschannelsretrieve Read
Integrationschannelsretrieve
- Lua path
app.integrations.posthog.integrationschannelsretrieve- Full name
posthog.posthog_integrationschannelsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
integrationsclickuplistsretrieve Read
Integrationsclickuplistsretrieve
- Lua path
app.integrations.posthog.integrationsclickuplistsretrieve- Full name
posthog.posthog_integrationsclickuplistsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
integrationsclickupspacesretrieve Read
Integrationsclickupspacesretrieve
- Lua path
app.integrations.posthog.integrationsclickupspacesretrieve- Full name
posthog.posthog_integrationsclickupspacesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
integrationsclickupworkspacesretrieve Read
Integrationsclickupworkspacesretrieve
- Lua path
app.integrations.posthog.integrationsclickupworkspacesretrieve- Full name
posthog.posthog_integrationsclickupworkspacesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
integrationsemailpartialupdate Write
Integrationsemailpartialupdate
- Lua path
app.integrations.posthog.integrationsemailpartialupdate- Full name
posthog.posthog_integrationsemailpartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
integrationsemailverifycreate Write
Integrationsemailverifycreate
- Lua path
app.integrations.posthog.integrationsemailverifycreate- Full name
posthog.posthog_integrationsemailverifycreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
integrationsgithubbranchesretrieve Read
Integrationsgithubbranchesretrieve
- Lua path
app.integrations.posthog.integrationsgithubbranchesretrieve- Full name
posthog.posthog_integrationsgithubbranchesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
integrationsgithubreposretrieve Read
Integrationsgithubreposretrieve
- Lua path
app.integrations.posthog.integrationsgithubreposretrieve- Full name
posthog.posthog_integrationsgithubreposretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
integrationsgithubreposrefreshcreate Write
Integrationsgithubreposrefreshcreate
- Lua path
app.integrations.posthog.integrationsgithubreposrefreshcreate- Full name
posthog.posthog_integrationsgithubreposrefreshcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
integrationsgoogleaccessibleaccountsretrieve Read
Integrationsgoogleaccessibleaccountsretrieve
- Lua path
app.integrations.posthog.integrationsgoogleaccessibleaccountsretrieve- Full name
posthog.posthog_integrationsgoogleaccessibleaccountsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
integrationsgoogleconversionactionsretrieve Read
Integrationsgoogleconversionactionsretrieve
- Lua path
app.integrations.posthog.integrationsgoogleconversionactionsretrieve- Full name
posthog.posthog_integrationsgoogleconversionactionsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
integrationsjiraprojectsretrieve Read
Integrationsjiraprojectsretrieve
- Lua path
app.integrations.posthog.integrationsjiraprojectsretrieve- Full name
posthog.posthog_integrationsjiraprojectsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
integrationslinearteamsretrieve Read
Integrationslinearteamsretrieve
- Lua path
app.integrations.posthog.integrationslinearteamsretrieve- Full name
posthog.posthog_integrationslinearteamsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
integrationslinkedinadsaccountsretrieve Read
Integrationslinkedinadsaccountsretrieve
- Lua path
app.integrations.posthog.integrationslinkedinadsaccountsretrieve- Full name
posthog.posthog_integrationslinkedinadsaccountsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
integrationslinkedinadsconversionrulesretrieve Read
Integrationslinkedinadsconversionrulesretrieve
- Lua path
app.integrations.posthog.integrationslinkedinadsconversionrulesretrieve- Full name
posthog.posthog_integrationslinkedinadsconversionrulesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
integrationstwiliophonenumbersretrieve Read
Integrationstwiliophonenumbersretrieve
- Lua path
app.integrations.posthog.integrationstwiliophonenumbersretrieve- Full name
posthog.posthog_integrationstwiliophonenumbersretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
integrationsauthorizeretrieve Read
Integrationsauthorizeretrieve
- Lua path
app.integrations.posthog.integrationsauthorizeretrieve- Full name
posthog.posthog_integrationsauthorizeretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
integrationsdomainconnectapplyurlcreate Write
Unified endpoint for generating Domain Connect apply URLs. Accepts a context ("email" or "proxy") and the relevant resource ID. The backend resolves the domain, template variables, and service ID based on context, then builds the signed apply URL.
- Lua path
app.integrations.posthog.integrationsdomainconnectapplyurlcreate- Full name
posthog.posthog_integrationsdomainconnectapplyurlcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
integrationsdomainconnectcheckretrieve Read
Integrationsdomainconnectcheckretrieve
- Lua path
app.integrations.posthog.integrationsdomainconnectcheckretrieve- Full name
posthog.posthog_integrationsdomainconnectcheckretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
integrationsgithublinkexistingcreate Write
Reuse a GitHub installation already linked to a sibling team in the same organization.
- Lua path
app.integrations.posthog.integrationsgithublinkexistingcreate- Full name
posthog.posthog_integrationsgithublinkexistingcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
integrationsgithuboauthauthorizecreate Write
Mint a User OAuth URL to bootstrap a fresh code when the install flow returns without one.
- Lua path
app.integrations.posthog.integrationsgithuboauthauthorizecreate- Full name
posthog.posthog_integrationsgithuboauthauthorizecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
jssnippetresolveretrieve Read
Preview what a given pin would resolve to, without saving it.
- Lua path
app.integrations.posthog.jssnippetresolveretrieve- Full name
posthog.posthog_jssnippetresolveretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
jssnippetversionretrieve Read
Return the team's current version pin and resolved version.
- Lua path
app.integrations.posthog.jssnippetversionretrieve- Full name
posthog.posthog_jssnippetversionretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
jssnippetversionpartialupdate Write
Update the team's version pin.
- Lua path
app.integrations.posthog.jssnippetversionpartialupdate- Full name
posthog.posthog_jssnippetversionpartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
livedebuggerbreakpointslist Read
Create, Read, Update and Delete breakpoints for live debugging.
- Lua path
app.integrations.posthog.livedebuggerbreakpointslist- Full name
posthog.posthog_livedebuggerbreakpointslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
livedebuggerbreakpointscreate Write
Create, Read, Update and Delete breakpoints for live debugging.
- Lua path
app.integrations.posthog.livedebuggerbreakpointscreate- Full name
posthog.posthog_livedebuggerbreakpointscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
livedebuggerbreakpointsretrieve Read
Create, Read, Update and Delete breakpoints for live debugging.
- Lua path
app.integrations.posthog.livedebuggerbreakpointsretrieve- Full name
posthog.posthog_livedebuggerbreakpointsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
livedebuggerbreakpointsupdate Write
Create, Read, Update and Delete breakpoints for live debugging.
- Lua path
app.integrations.posthog.livedebuggerbreakpointsupdate- Full name
posthog.posthog_livedebuggerbreakpointsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
livedebuggerbreakpointspartialupdate Write
Create, Read, Update and Delete breakpoints for live debugging.
- Lua path
app.integrations.posthog.livedebuggerbreakpointspartialupdate- Full name
posthog.posthog_livedebuggerbreakpointspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
livedebuggerbreakpointsdestroy Write
Create, Read, Update and Delete breakpoints for live debugging.
- Lua path
app.integrations.posthog.livedebuggerbreakpointsdestroy- Full name
posthog.posthog_livedebuggerbreakpointsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_active_breakpoints_external_api Read
Get active breakpoints (External API)
- Lua path
app.integrations.posthog.get_active_breakpoints_external_api- Full name
posthog.posthog_livedebuggerbreakpointsactiveretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_breakpoint_hits Read
Get breakpoint hits
- Lua path
app.integrations.posthog.get_breakpoint_hits- Full name
posthog.posthog_livedebuggerbreakpointsbreakpointhitsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
logsalertslist Read
Logsalertslist
- Lua path
app.integrations.posthog.logsalertslist- Full name
posthog.posthog_logsalertslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
logsalertscreate Write
Logsalertscreate
- Lua path
app.integrations.posthog.logsalertscreate- Full name
posthog.posthog_logsalertscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
logsalertsretrieve Read
Logsalertsretrieve
- Lua path
app.integrations.posthog.logsalertsretrieve- Full name
posthog.posthog_logsalertsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
logsalertsupdate Write
Logsalertsupdate
- Lua path
app.integrations.posthog.logsalertsupdate- Full name
posthog.posthog_logsalertsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
logsalertspartialupdate Write
Logsalertspartialupdate
- Lua path
app.integrations.posthog.logsalertspartialupdate- Full name
posthog.posthog_logsalertspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
logsalertsdestroy Write
Logsalertsdestroy
- Lua path
app.integrations.posthog.logsalertsdestroy- Full name
posthog.posthog_logsalertsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
logsalertsdestinationscreate Write
Create a notification destination for this alert. One HogFunction is created per alert event kind (firing, resolved, ...) atomically.
- Lua path
app.integrations.posthog.logsalertsdestinationscreate- Full name
posthog.posthog_logsalertsdestinationscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
logsalertsdestinationsdeletecreate Write
Delete a notification destination by deleting its HogFunction group atomically.
- Lua path
app.integrations.posthog.logsalertsdestinationsdeletecreate- Full name
posthog.posthog_logsalertsdestinationsdeletecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
logsalertseventslist Read
Paginated event history for this alert, newest first. Returns state transitions, errored checks, and user-initiated control-plane rows (reset, enable/disable, snooze/unsnooze, threshold change) - quiet no-op check rows (where state didn't change and there w...
- Lua path
app.integrations.posthog.logsalertseventslist- Full name
posthog.posthog_logsalertseventslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
logsalertsresetcreate Write
Reset a broken alert. Clears the consecutive-failure counter and schedules an immediate recheck.
- Lua path
app.integrations.posthog.logsalertsresetcreate- Full name
posthog.posthog_logsalertsresetcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
logsalertssimulatecreate Write
Simulate a logs alert on historical data using the full state machine. Read-only - no alert check records are created.
- Lua path
app.integrations.posthog.logsalertssimulatecreate- Full name
posthog.posthog_logsalertssimulatecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
logsattributesretrieve Read
Logsattributesretrieve
- Lua path
app.integrations.posthog.logsattributesretrieve- Full name
posthog.posthog_logsattributesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
logscountcreate Write
Logscountcreate
- Lua path
app.integrations.posthog.logscountcreate- Full name
posthog.posthog_logscountcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
logscountrangescreate Write
Logscountrangescreate
- Lua path
app.integrations.posthog.logscountrangescreate- Full name
posthog.posthog_logscountrangescreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
logsexportcreate Write
Logsexportcreate
- Lua path
app.integrations.posthog.logsexportcreate- Full name
posthog.posthog_logsexportcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
logshaslogsretrieve Read
Logshaslogsretrieve
- Lua path
app.integrations.posthog.logshaslogsretrieve- Full name
posthog.posthog_logshaslogsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
logsquerycreate Write
Logsquerycreate
- Lua path
app.integrations.posthog.logsquerycreate- Full name
posthog.posthog_logsquerycreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
logssamplingruleslist Read
Logssamplingruleslist
- Lua path
app.integrations.posthog.logssamplingruleslist- Full name
posthog.posthog_logssamplingruleslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
logssamplingrulescreate Write
Logssamplingrulescreate
- Lua path
app.integrations.posthog.logssamplingrulescreate- Full name
posthog.posthog_logssamplingrulescreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
logssamplingrulesretrieve Read
Logssamplingrulesretrieve
- Lua path
app.integrations.posthog.logssamplingrulesretrieve- Full name
posthog.posthog_logssamplingrulesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
logssamplingrulesupdate Write
Logssamplingrulesupdate
- Lua path
app.integrations.posthog.logssamplingrulesupdate- Full name
posthog.posthog_logssamplingrulesupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
logssamplingrulespartialupdate Write
Logssamplingrulespartialupdate
- Lua path
app.integrations.posthog.logssamplingrulespartialupdate- Full name
posthog.posthog_logssamplingrulespartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
logssamplingrulesdestroy Write
Logssamplingrulesdestroy
- Lua path
app.integrations.posthog.logssamplingrulesdestroy- Full name
posthog.posthog_logssamplingrulesdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
logssamplingrulessimulatecreate Write
Dry-run estimate for how much volume this rule would remove (placeholder response until CH-backed simulation is wired).
- Lua path
app.integrations.posthog.logssamplingrulessimulatecreate- Full name
posthog.posthog_logssamplingrulessimulatecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
logssamplingrulesreordercreate Write
Atomically reassign priorities so the given ID order maps to ascending priorities (0..n-1).
- Lua path
app.integrations.posthog.logssamplingrulesreordercreate- Full name
posthog.posthog_logssamplingrulesreordercreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
logsservicescreate Write
Logsservicescreate
- Lua path
app.integrations.posthog.logsservicescreate- Full name
posthog.posthog_logsservicescreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
logssparklinecreate Write
Logssparklinecreate
- Lua path
app.integrations.posthog.logssparklinecreate- Full name
posthog.posthog_logssparklinecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
logsvaluesretrieve Read
Logsvaluesretrieve
- Lua path
app.integrations.posthog.logsvaluesretrieve- Full name
posthog.posthog_logsvaluesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
notebookslist Read
The API for interacting with Notebooks. This feature is in early access and the API can have breaking changes without announcement.
- Lua path
app.integrations.posthog.notebookslist- Full name
posthog.posthog_notebookslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
notebookscreate Write
The API for interacting with Notebooks. This feature is in early access and the API can have breaking changes without announcement.
- Lua path
app.integrations.posthog.notebookscreate- Full name
posthog.posthog_notebookscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
notebookssharinglist Read
Notebookssharinglist
- Lua path
app.integrations.posthog.notebookssharinglist- Full name
posthog.posthog_notebookssharinglist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
notebookssharingpasswordscreate Write
Create a new password for the sharing configuration.
- Lua path
app.integrations.posthog.notebookssharingpasswordscreate- Full name
posthog.posthog_notebookssharingpasswordscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
notebookssharingpasswordsdestroy Write
Delete a password from the sharing configuration.
- Lua path
app.integrations.posthog.notebookssharingpasswordsdestroy- Full name
posthog.posthog_notebookssharingpasswordsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
notebookssharingrefreshcreate Write
Notebookssharingrefreshcreate
- Lua path
app.integrations.posthog.notebookssharingrefreshcreate- Full name
posthog.posthog_notebookssharingrefreshcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
notebooksretrieve Read
The API for interacting with Notebooks. This feature is in early access and the API can have breaking changes without announcement.
- Lua path
app.integrations.posthog.notebooksretrieve- Full name
posthog.posthog_notebooksretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
notebooksupdate Write
The API for interacting with Notebooks. This feature is in early access and the API can have breaking changes without announcement.
- Lua path
app.integrations.posthog.notebooksupdate- Full name
posthog.posthog_notebooksupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
notebookspartialupdate Write
The API for interacting with Notebooks. This feature is in early access and the API can have breaking changes without announcement.
- Lua path
app.integrations.posthog.notebookspartialupdate- Full name
posthog.posthog_notebookspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
notebooksdestroy Write
Hard delete of this model is not allowed. Use a patch API call to set "deleted" to true
- Lua path
app.integrations.posthog.notebooksdestroy- Full name
posthog.posthog_notebooksdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
notebooksactivityretrieve Read
The API for interacting with Notebooks. This feature is in early access and the API can have breaking changes without announcement.
- Lua path
app.integrations.posthog.notebooksactivityretrieve- Full name
posthog.posthog_notebooksactivityretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
notebookscollabsavecreate Write
The API for interacting with Notebooks. This feature is in early access and the API can have breaking changes without announcement.
- Lua path
app.integrations.posthog.notebookscollabsavecreate- Full name
posthog.posthog_notebookscollabsavecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
notebookscollabstreamretrieve Read
The API for interacting with Notebooks. This feature is in early access and the API can have breaking changes without announcement.
- Lua path
app.integrations.posthog.notebookscollabstreamretrieve- Full name
posthog.posthog_notebookscollabstreamretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
notebookshogqlexecutecreate Write
The API for interacting with Notebooks. This feature is in early access and the API can have breaking changes without announcement.
- Lua path
app.integrations.posthog.notebookshogqlexecutecreate- Full name
posthog.posthog_notebookshogqlexecutecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
notebookskernelconfigcreate Write
The API for interacting with Notebooks. This feature is in early access and the API can have breaking changes without announcement.
- Lua path
app.integrations.posthog.notebookskernelconfigcreate- Full name
posthog.posthog_notebookskernelconfigcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
notebookskerneldataframeretrieve Read
The API for interacting with Notebooks. This feature is in early access and the API can have breaking changes without announcement.
- Lua path
app.integrations.posthog.notebookskerneldataframeretrieve- Full name
posthog.posthog_notebookskerneldataframeretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
notebookskernelexecutecreate Write
The API for interacting with Notebooks. This feature is in early access and the API can have breaking changes without announcement.
- Lua path
app.integrations.posthog.notebookskernelexecutecreate- Full name
posthog.posthog_notebookskernelexecutecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
notebookskernelexecutestreamcreate Write
The API for interacting with Notebooks. This feature is in early access and the API can have breaking changes without announcement.
- Lua path
app.integrations.posthog.notebookskernelexecutestreamcreate- Full name
posthog.posthog_notebookskernelexecutestreamcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
notebookskernelrestartcreate Write
The API for interacting with Notebooks. This feature is in early access and the API can have breaking changes without announcement.
- Lua path
app.integrations.posthog.notebookskernelrestartcreate- Full name
posthog.posthog_notebookskernelrestartcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
notebookskernelstartcreate Write
The API for interacting with Notebooks. This feature is in early access and the API can have breaking changes without announcement.
- Lua path
app.integrations.posthog.notebookskernelstartcreate- Full name
posthog.posthog_notebookskernelstartcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
notebookskernelstatusretrieve Read
The API for interacting with Notebooks. This feature is in early access and the API can have breaking changes without announcement.
- Lua path
app.integrations.posthog.notebookskernelstatusretrieve- Full name
posthog.posthog_notebookskernelstatusretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
notebookskernelstopcreate Write
The API for interacting with Notebooks. This feature is in early access and the API can have breaking changes without announcement.
- Lua path
app.integrations.posthog.notebookskernelstopcreate- Full name
posthog.posthog_notebookskernelstopcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
notebooksallactivityretrieve Read
The API for interacting with Notebooks. This feature is in early access and the API can have breaking changes without announcement.
- Lua path
app.integrations.posthog.notebooksallactivityretrieve- Full name
posthog.posthog_notebooksallactivityretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
notebooksrecordingcommentsretrieve Read
The API for interacting with Notebooks. This feature is in early access and the API can have breaking changes without announcement.
- Lua path
app.integrations.posthog.notebooksrecordingcommentsretrieve- Full name
posthog.posthog_notebooksrecordingcommentsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
objectmediapreviewslist Read
Objectmediapreviewslist
- Lua path
app.integrations.posthog.objectmediapreviewslist- Full name
posthog.posthog_objectmediapreviewslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
objectmediapreviewscreate Write
Objectmediapreviewscreate
- Lua path
app.integrations.posthog.objectmediapreviewscreate- Full name
posthog.posthog_objectmediapreviewscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
objectmediapreviewsretrieve Read
Objectmediapreviewsretrieve
- Lua path
app.integrations.posthog.objectmediapreviewsretrieve- Full name
posthog.posthog_objectmediapreviewsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
objectmediapreviewsupdate Write
Objectmediapreviewsupdate
- Lua path
app.integrations.posthog.objectmediapreviewsupdate- Full name
posthog.posthog_objectmediapreviewsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
objectmediapreviewspartialupdate Write
Objectmediapreviewspartialupdate
- Lua path
app.integrations.posthog.objectmediapreviewspartialupdate- Full name
posthog.posthog_objectmediapreviewspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
objectmediapreviewsdestroy Write
Objectmediapreviewsdestroy
- Lua path
app.integrations.posthog.objectmediapreviewsdestroy- Full name
posthog.posthog_objectmediapreviewsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
objectmediapreviewspreferredforeventretrieve Read
Get the preferred media preview for an event definition. Most recent user-uploaded, then most recent exported asset. Requires eventdefinition (query param).
- Lua path
app.integrations.posthog.objectmediapreviewspreferredforeventretrieve- Full name
posthog.posthog_objectmediapreviewspreferredforeventretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
persistedfolderlist Read
Persistedfolderlist
- Lua path
app.integrations.posthog.persistedfolderlist- Full name
posthog.posthog_persistedfolderlist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
persistedfoldercreate Write
Persistedfoldercreate
- Lua path
app.integrations.posthog.persistedfoldercreate- Full name
posthog.posthog_persistedfoldercreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
persistedfolderretrieve Read
Persistedfolderretrieve
- Lua path
app.integrations.posthog.persistedfolderretrieve- Full name
posthog.posthog_persistedfolderretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
persistedfolderupdate Write
Persistedfolderupdate
- Lua path
app.integrations.posthog.persistedfolderupdate- Full name
posthog.posthog_persistedfolderupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
persistedfolderpartialupdate Write
Persistedfolderpartialupdate
- Lua path
app.integrations.posthog.persistedfolderpartialupdate- Full name
posthog.posthog_persistedfolderpartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
persistedfolderdestroy Write
Persistedfolderdestroy
- Lua path
app.integrations.posthog.persistedfolderdestroy- Full name
posthog.posthog_persistedfolderdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
personslist Read
This endpoint is meant for reading and deleting persons. To create or update persons, we recommend using the [capture API](https://posthog.com/docs/api/capture), the $set and $unset [properties](https://posthog.com/docs/product-analytics/user-properties), o...
- Lua path
app.integrations.posthog.personslist- Full name
posthog.posthog_personslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
personsretrieve Read
This endpoint is meant for reading and deleting persons. To create or update persons, we recommend using the [capture API](https://posthog.com/docs/api/capture), the $set and $unset [properties](https://posthog.com/docs/product-analytics/user-properties), o...
- Lua path
app.integrations.posthog.personsretrieve- Full name
posthog.posthog_personsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
personsupdate Write
Only for setting properties on the person. "properties" from the request data will be updated via a "$set" event. This means that only the properties listed will be updated, but other properties won't be removed nor updated. If you would like to remove a pr...
- Lua path
app.integrations.posthog.personsupdate- Full name
posthog.posthog_personsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
personspartialupdate Write
This endpoint is meant for reading and deleting persons. To create or update persons, we recommend using the [capture API](https://posthog.com/docs/api/capture), the $set and $unset [properties](https://posthog.com/docs/product-analytics/user-properties), o...
- Lua path
app.integrations.posthog.personspartialupdate- Full name
posthog.posthog_personspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
personsactivityretrieve Read
This endpoint is meant for reading and deleting persons. To create or update persons, we recommend using the [capture API](https://posthog.com/docs/api/capture), the $set and $unset [properties](https://posthog.com/docs/product-analytics/user-properties), o...
- Lua path
app.integrations.posthog.personsactivityretrieve- Full name
posthog.posthog_personsactivityretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
personsdeletepropertycreate Write
This endpoint is meant for reading and deleting persons. To create or update persons, we recommend using the [capture API](https://posthog.com/docs/api/capture), the $set and $unset [properties](https://posthog.com/docs/product-analytics/user-properties), o...
- Lua path
app.integrations.posthog.personsdeletepropertycreate- Full name
posthog.posthog_personsdeletepropertycreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
personspropertiestimelineretrieve Read
This endpoint is meant for reading and deleting persons. To create or update persons, we recommend using the [capture API](https://posthog.com/docs/api/capture), the $set and $unset [properties](https://posthog.com/docs/product-analytics/user-properties), o...
- Lua path
app.integrations.posthog.personspropertiestimelineretrieve- Full name
posthog.posthog_personspropertiestimelineretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
personssplitcreate Write
This endpoint is meant for reading and deleting persons. To create or update persons, we recommend using the [capture API](https://posthog.com/docs/api/capture), the $set and $unset [properties](https://posthog.com/docs/product-analytics/user-properties), o...
- Lua path
app.integrations.posthog.personssplitcreate- Full name
posthog.posthog_personssplitcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
personsupdatepropertycreate Write
This endpoint is meant for reading and deleting persons. To create or update persons, we recommend using the [capture API](https://posthog.com/docs/api/capture), the $set and $unset [properties](https://posthog.com/docs/product-analytics/user-properties), o...
- Lua path
app.integrations.posthog.personsupdatepropertycreate- Full name
posthog.posthog_personsupdatepropertycreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
personsallactivityretrieve Read
This endpoint is meant for reading and deleting persons. To create or update persons, we recommend using the [capture API](https://posthog.com/docs/api/capture), the $set and $unset [properties](https://posthog.com/docs/product-analytics/user-properties), o...
- Lua path
app.integrations.posthog.personsallactivityretrieve- Full name
posthog.posthog_personsallactivityretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
personsbatchbydistinctidscreate Write
This endpoint is meant for reading and deleting persons. To create or update persons, we recommend using the [capture API](https://posthog.com/docs/api/capture), the $set and $unset [properties](https://posthog.com/docs/product-analytics/user-properties), o...
- Lua path
app.integrations.posthog.personsbatchbydistinctidscreate- Full name
posthog.posthog_personsbatchbydistinctidscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
personsbatchbyuuidscreate Write
This endpoint is meant for reading and deleting persons. To create or update persons, we recommend using the [capture API](https://posthog.com/docs/api/capture), the $set and $unset [properties](https://posthog.com/docs/product-analytics/user-properties), o...
- Lua path
app.integrations.posthog.personsbatchbyuuidscreate- Full name
posthog.posthog_personsbatchbyuuidscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
personsbulkdeletecreate Write
This endpoint allows you to bulk delete persons, either by the PostHog person IDs or by distinct IDs. You can pass in a maximum of 1000 IDs per call. Only events captured before the request will be deleted.
- Lua path
app.integrations.posthog.personsbulkdeletecreate- Full name
posthog.posthog_personsbulkdeletecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
personscohortsretrieve Read
This endpoint is meant for reading and deleting persons. To create or update persons, we recommend using the [capture API](https://posthog.com/docs/api/capture), the $set and $unset [properties](https://posthog.com/docs/product-analytics/user-properties), o...
- Lua path
app.integrations.posthog.personscohortsretrieve- Full name
posthog.posthog_personscohortsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
personsdeletionstatuslist Read
List the status of queued event deletions for persons. When you delete a person with deleteevents=true, an async deletion is queued. Use this endpoint to check whether those deletions are still pending or have been completed.
- Lua path
app.integrations.posthog.personsdeletionstatuslist- Full name
posthog.posthog_personsdeletionstatuslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
personsfunnelretrieve Read
This endpoint is meant for reading and deleting persons. To create or update persons, we recommend using the [capture API](https://posthog.com/docs/api/capture), the $set and $unset [properties](https://posthog.com/docs/product-analytics/user-properties), o...
- Lua path
app.integrations.posthog.personsfunnelretrieve- Full name
posthog.posthog_personsfunnelretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
personsfunnelcreate Write
This endpoint is meant for reading and deleting persons. To create or update persons, we recommend using the [capture API](https://posthog.com/docs/api/capture), the $set and $unset [properties](https://posthog.com/docs/product-analytics/user-properties), o...
- Lua path
app.integrations.posthog.personsfunnelcreate- Full name
posthog.posthog_personsfunnelcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
personsfunnelcorrelationretrieve Read
This endpoint is meant for reading and deleting persons. To create or update persons, we recommend using the [capture API](https://posthog.com/docs/api/capture), the $set and $unset [properties](https://posthog.com/docs/product-analytics/user-properties), o...
- Lua path
app.integrations.posthog.personsfunnelcorrelationretrieve- Full name
posthog.posthog_personsfunnelcorrelationretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
personsfunnelcorrelationcreate Write
This endpoint is meant for reading and deleting persons. To create or update persons, we recommend using the [capture API](https://posthog.com/docs/api/capture), the $set and $unset [properties](https://posthog.com/docs/product-analytics/user-properties), o...
- Lua path
app.integrations.posthog.personsfunnelcorrelationcreate- Full name
posthog.posthog_personsfunnelcorrelationcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
personslifecycleretrieve Read
This endpoint is meant for reading and deleting persons. To create or update persons, we recommend using the [capture API](https://posthog.com/docs/api/capture), the $set and $unset [properties](https://posthog.com/docs/product-analytics/user-properties), o...
- Lua path
app.integrations.posthog.personslifecycleretrieve- Full name
posthog.posthog_personslifecycleretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
personspropertiesattimeretrieve Read
Get person properties as they existed at a specific point in time. This endpoint reconstructs person properties by querying ClickHouse events for $set and $setonce operations up to the specified timestamp. Query parameters: - distinctid: The distinctid of t...
- Lua path
app.integrations.posthog.personspropertiesattimeretrieve- Full name
posthog.posthog_personspropertiesattimeretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
personsresetpersondistinctidcreate Write
Reset a distinctid for a deleted person. This allows the distinctid to be used again.
- Lua path
app.integrations.posthog.personsresetpersondistinctidcreate- Full name
posthog.posthog_personsresetpersondistinctidcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
personstrendsretrieve Read
This endpoint is meant for reading and deleting persons. To create or update persons, we recommend using the [capture API](https://posthog.com/docs/api/capture), the $set and $unset [properties](https://posthog.com/docs/product-analytics/user-properties), o...
- Lua path
app.integrations.posthog.personstrendsretrieve- Full name
posthog.posthog_personstrendsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
personsvaluesretrieve Read
This endpoint is meant for reading and deleting persons. To create or update persons, we recommend using the [capture API](https://posthog.com/docs/api/capture), the $set and $unset [properties](https://posthog.com/docs/product-analytics/user-properties), o...
- Lua path
app.integrations.posthog.personsvaluesretrieve- Full name
posthog.posthog_personsvaluesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
pluginconfigslogslist Read
Pluginconfigslogslist
- Lua path
app.integrations.posthog.pluginconfigslogslist- Full name
posthog.posthog_pluginconfigslogslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
producttourslist Read
Producttourslist
- Lua path
app.integrations.posthog.producttourslist- Full name
posthog.posthog_producttourslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
producttourscreate Write
Producttourscreate
- Lua path
app.integrations.posthog.producttourscreate- Full name
posthog.posthog_producttourscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
producttoursretrieve Read
Producttoursretrieve
- Lua path
app.integrations.posthog.producttoursretrieve- Full name
posthog.posthog_producttoursretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
producttoursupdate Write
Producttoursupdate
- Lua path
app.integrations.posthog.producttoursupdate- Full name
posthog.posthog_producttoursupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
producttourspartialupdate Write
Producttourspartialupdate
- Lua path
app.integrations.posthog.producttourspartialupdate- Full name
posthog.posthog_producttourspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
producttoursdestroy Write
Producttoursdestroy
- Lua path
app.integrations.posthog.producttoursdestroy- Full name
posthog.posthog_producttoursdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
producttoursdiscarddraftdestroy Write
Discard draft content.
- Lua path
app.integrations.posthog.producttoursdiscarddraftdestroy- Full name
posthog.posthog_producttoursdiscarddraftdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
producttoursdraftpartialupdate Write
Save draft content (server-side merge). No side effects triggered.
- Lua path
app.integrations.posthog.producttoursdraftpartialupdate- Full name
posthog.posthog_producttoursdraftpartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
producttoursdraftstatusretrieve Read
Lightweight polling endpoint for draft change detection.
- Lua path
app.integrations.posthog.producttoursdraftstatusretrieve- Full name
posthog.posthog_producttoursdraftstatusretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
producttoursgeneratecreate Write
Generate tour step content using AI.
- Lua path
app.integrations.posthog.producttoursgeneratecreate- Full name
posthog.posthog_producttoursgeneratecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
producttourspublishdraftcreate Write
Commit draft to live tour. Runs full validation and triggers side effects. Accepts an optional body payload. If provided, merges it into the draft before publishing so the caller can save + publish in a single request.
- Lua path
app.integrations.posthog.producttourspublishdraftcreate- Full name
posthog.posthog_producttourspublishdraftcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
projectsecretapikeyslist Read
Projectsecretapikeyslist
- Lua path
app.integrations.posthog.projectsecretapikeyslist- Full name
posthog.posthog_projectsecretapikeyslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
projectsecretapikeyscreate Write
Projectsecretapikeyscreate
- Lua path
app.integrations.posthog.projectsecretapikeyscreate- Full name
posthog.posthog_projectsecretapikeyscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
projectsecretapikeysretrieve Read
Projectsecretapikeysretrieve
- Lua path
app.integrations.posthog.projectsecretapikeysretrieve- Full name
posthog.posthog_projectsecretapikeysretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
projectsecretapikeysupdate Write
Projectsecretapikeysupdate
- Lua path
app.integrations.posthog.projectsecretapikeysupdate- Full name
posthog.posthog_projectsecretapikeysupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
projectsecretapikeyspartialupdate Write
Projectsecretapikeyspartialupdate
- Lua path
app.integrations.posthog.projectsecretapikeyspartialupdate- Full name
posthog.posthog_projectsecretapikeyspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
projectsecretapikeysdestroy Write
Projectsecretapikeysdestroy
- Lua path
app.integrations.posthog.projectsecretapikeysdestroy- Full name
posthog.posthog_projectsecretapikeysdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
projectsecretapikeysrollcreate Write
Roll a project secret API key
- Lua path
app.integrations.posthog.projectsecretapikeysrollcreate- Full name
posthog.posthog_projectsecretapikeysrollcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
propertydefinitionslist Read
Propertydefinitionslist
- Lua path
app.integrations.posthog.propertydefinitionslist- Full name
posthog.posthog_propertydefinitionslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
propertydefinitionsretrieve Read
Propertydefinitionsretrieve
- Lua path
app.integrations.posthog.propertydefinitionsretrieve- Full name
posthog.posthog_propertydefinitionsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
propertydefinitionsupdate Write
Propertydefinitionsupdate
- Lua path
app.integrations.posthog.propertydefinitionsupdate- Full name
posthog.posthog_propertydefinitionsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
propertydefinitionspartialupdate Write
Propertydefinitionspartialupdate
- Lua path
app.integrations.posthog.propertydefinitionspartialupdate- Full name
posthog.posthog_propertydefinitionspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
propertydefinitionsdestroy Write
Propertydefinitionsdestroy
- Lua path
app.integrations.posthog.propertydefinitionsdestroy- Full name
posthog.posthog_propertydefinitionsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
propertydefinitionsbulkupdatetagscreate Write
Bulk update tags on multiple objects. Accepts: - {"ids": [...], "action": "add"|"remove"|"set", "tags": ["tag1", "tag2"]} Actions: - "add": Add tags to existing tags on each object - "remove": Remove specific tags from each object - "set": Replace all tags...
- Lua path
app.integrations.posthog.propertydefinitionsbulkupdatetagscreate- Full name
posthog.posthog_propertydefinitionsbulkupdatetagscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
propertydefinitionsseentogetherretrieve Read
Allows a caller to provide a list of event names and a single property name Returns a map of the event names to a boolean representing whether that property has ever been seen with that eventname
- Lua path
app.integrations.posthog.propertydefinitionsseentogetherretrieve- Full name
posthog.posthog_propertydefinitionsseentogetherretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
querycreate Write
DRF ViewSet mixin that gates coalesced responses behind permission checks. The QueryCoalescingMiddleware attaches cached response data to request.META["coalescedresponse"] for followers. This mixin runs DRF's initial() (auth + permissions + throttling) befo...
- Lua path
app.integrations.posthog.querycreate- Full name
posthog.posthog_querycreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
queryretrieve Read
(Experimental)
- Lua path
app.integrations.posthog.queryretrieve- Full name
posthog.posthog_queryretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
querydestroy Write
(Experimental)
- Lua path
app.integrations.posthog.querydestroy- Full name
posthog.posthog_querydestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
querylogretrieve Read
Get query log details from querylogarchive table for a specific queryid, the query must have been issued in last 24 hours.
- Lua path
app.integrations.posthog.querylogretrieve- Full name
posthog.posthog_querylogretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
querycreatewithkind Write
DRF ViewSet mixin that gates coalesced responses behind permission checks. The QueryCoalescingMiddleware attaches cached response data to request.META["coalescedresponse"] for followers. This mixin runs DRF's initial() (auth + permissions + throttling) befo...
- Lua path
app.integrations.posthog.querycreatewithkind- Full name
posthog.posthog_querycreatewithkind
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
querycheckauthforasynccreate Write
DRF ViewSet mixin that gates coalesced responses behind permission checks. The QueryCoalescingMiddleware attaches cached response data to request.META["coalescedresponse"] for followers. This mixin runs DRF's initial() (auth + permissions + throttling) befo...
- Lua path
app.integrations.posthog.querycheckauthforasynccreate- Full name
posthog.posthog_querycheckauthforasynccreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
querydraftsqlretrieve Read
DRF ViewSet mixin that gates coalesced responses behind permission checks. The QueryCoalescingMiddleware attaches cached response data to request.META["coalescedresponse"] for followers. This mixin runs DRF's initial() (auth + permissions + throttling) befo...
- Lua path
app.integrations.posthog.querydraftsqlretrieve- Full name
posthog.posthog_querydraftsqlretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
queryupgradecreate Write
Upgrades a query without executing it. Returns a query with all nodes migrated to the latest version.
- Lua path
app.integrations.posthog.queryupgradecreate- Full name
posthog.posthog_queryupgradecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sandboxlist Read
API for managing sandbox environments that control network access for task runs.
- Lua path
app.integrations.posthog.sandboxlist- Full name
posthog.posthog_sandboxlist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sandboxcreate Write
API for managing sandbox environments that control network access for task runs.
- Lua path
app.integrations.posthog.sandboxcreate- Full name
posthog.posthog_sandboxcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sandboxretrieve Read
API for managing sandbox environments that control network access for task runs.
- Lua path
app.integrations.posthog.sandboxretrieve- Full name
posthog.posthog_sandboxretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sandboxpartialupdate Write
API for managing sandbox environments that control network access for task runs.
- Lua path
app.integrations.posthog.sandboxpartialupdate- Full name
posthog.posthog_sandboxpartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sandboxdestroy Write
API for managing sandbox environments that control network access for task runs.
- Lua path
app.integrations.posthog.sandboxdestroy- Full name
posthog.posthog_sandboxdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
savedlist Read
Savedlist
- Lua path
app.integrations.posthog.savedlist- Full name
posthog.posthog_savedlist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
savedcreate Write
Savedcreate
- Lua path
app.integrations.posthog.savedcreate- Full name
posthog.posthog_savedcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
savedretrieve Read
Savedretrieve
- Lua path
app.integrations.posthog.savedretrieve- Full name
posthog.posthog_savedretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
savedpartialupdate Write
Savedpartialupdate
- Lua path
app.integrations.posthog.savedpartialupdate- Full name
posthog.posthog_savedpartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
saveddestroy Write
Hard delete of this model is not allowed. Use a patch API call to set "deleted" to true
- Lua path
app.integrations.posthog.saveddestroy- Full name
posthog.posthog_saveddestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
savedregeneratecreate Write
Savedregeneratecreate
- Lua path
app.integrations.posthog.savedregeneratecreate- Full name
posthog.posthog_savedregeneratecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
schemapropertygroupslist Read
Schemapropertygroupslist
- Lua path
app.integrations.posthog.schemapropertygroupslist- Full name
posthog.posthog_schemapropertygroupslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
schemapropertygroupscreate Write
Schemapropertygroupscreate
- Lua path
app.integrations.posthog.schemapropertygroupscreate- Full name
posthog.posthog_schemapropertygroupscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
schemapropertygroupsretrieve Read
Schemapropertygroupsretrieve
- Lua path
app.integrations.posthog.schemapropertygroupsretrieve- Full name
posthog.posthog_schemapropertygroupsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
schemapropertygroupsupdate Write
Schemapropertygroupsupdate
- Lua path
app.integrations.posthog.schemapropertygroupsupdate- Full name
posthog.posthog_schemapropertygroupsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
schemapropertygroupspartialupdate Write
Schemapropertygroupspartialupdate
- Lua path
app.integrations.posthog.schemapropertygroupspartialupdate- Full name
posthog.posthog_schemapropertygroupspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
schemapropertygroupsdestroy Write
Schemapropertygroupsdestroy
- Lua path
app.integrations.posthog.schemapropertygroupsdestroy- Full name
posthog.posthog_schemapropertygroupsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_sdk_health_report_project Read
Get SDK health report for a project
- Lua path
app.integrations.posthog.get_sdk_health_report_project- Full name
posthog.posthog_sdkdoctorreportretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sessiongroupsummarieslist Read
API for retrieving and managing stored group session summaries.
- Lua path
app.integrations.posthog.sessiongroupsummarieslist- Full name
posthog.posthog_sessiongroupsummarieslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sessiongroupsummariescreate Write
API for retrieving and managing stored group session summaries.
- Lua path
app.integrations.posthog.sessiongroupsummariescreate- Full name
posthog.posthog_sessiongroupsummariescreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sessiongroupsummariesretrieve Read
API for retrieving and managing stored group session summaries.
- Lua path
app.integrations.posthog.sessiongroupsummariesretrieve- Full name
posthog.posthog_sessiongroupsummariesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sessiongroupsummariesupdate Write
API for retrieving and managing stored group session summaries.
- Lua path
app.integrations.posthog.sessiongroupsummariesupdate- Full name
posthog.posthog_sessiongroupsummariesupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sessiongroupsummariespartialupdate Write
API for retrieving and managing stored group session summaries.
- Lua path
app.integrations.posthog.sessiongroupsummariespartialupdate- Full name
posthog.posthog_sessiongroupsummariespartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sessiongroupsummariesdestroy Write
API for retrieving and managing stored group session summaries.
- Lua path
app.integrations.posthog.sessiongroupsummariesdestroy- Full name
posthog.posthog_sessiongroupsummariesdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sessionrecordingplaylistslist Read
Override list to include synthetic playlists
- Lua path
app.integrations.posthog.sessionrecordingplaylistslist- Full name
posthog.posthog_sessionrecordingplaylistslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sessionrecordingplaylistscreate Write
Sessionrecordingplaylistscreate
- Lua path
app.integrations.posthog.sessionrecordingplaylistscreate- Full name
posthog.posthog_sessionrecordingplaylistscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sessionrecordingplaylistsretrieve Read
Sessionrecordingplaylistsretrieve
- Lua path
app.integrations.posthog.sessionrecordingplaylistsretrieve- Full name
posthog.posthog_sessionrecordingplaylistsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sessionrecordingplaylistsupdate Write
Sessionrecordingplaylistsupdate
- Lua path
app.integrations.posthog.sessionrecordingplaylistsupdate- Full name
posthog.posthog_sessionrecordingplaylistsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sessionrecordingplaylistspartialupdate Write
Sessionrecordingplaylistspartialupdate
- Lua path
app.integrations.posthog.sessionrecordingplaylistspartialupdate- Full name
posthog.posthog_sessionrecordingplaylistspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sessionrecordingplaylistsdestroy Write
Hard delete of this model is not allowed. Use a patch API call to set "deleted" to true
- Lua path
app.integrations.posthog.sessionrecordingplaylistsdestroy- Full name
posthog.posthog_sessionrecordingplaylistsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sessionrecordingplaylistsrecordingsretrieve Read
Sessionrecordingplaylistsrecordingsretrieve
- Lua path
app.integrations.posthog.sessionrecordingplaylistsrecordingsretrieve- Full name
posthog.posthog_sessionrecordingplaylistsrecordingsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sessionrecordingplaylistsrecordingscreate Write
Sessionrecordingplaylistsrecordingscreate
- Lua path
app.integrations.posthog.sessionrecordingplaylistsrecordingscreate- Full name
posthog.posthog_sessionrecordingplaylistsrecordingscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sessionrecordingplaylistsrecordingsdestroy Write
Sessionrecordingplaylistsrecordingsdestroy
- Lua path
app.integrations.posthog.sessionrecordingplaylistsrecordingsdestroy- Full name
posthog.posthog_sessionrecordingplaylistsrecordingsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sessionrecordingslist Read
Sessionrecordingslist
- Lua path
app.integrations.posthog.sessionrecordingslist- Full name
posthog.posthog_sessionrecordingslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sessionrecordingsretrieve Read
Sessionrecordingsretrieve
- Lua path
app.integrations.posthog.sessionrecordingsretrieve- Full name
posthog.posthog_sessionrecordingsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sessionrecordingsupdate Write
Sessionrecordingsupdate
- Lua path
app.integrations.posthog.sessionrecordingsupdate- Full name
posthog.posthog_sessionrecordingsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sessionrecordingspartialupdate Write
Sessionrecordingspartialupdate
- Lua path
app.integrations.posthog.sessionrecordingspartialupdate- Full name
posthog.posthog_sessionrecordingspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sessionrecordingsdestroy Write
Sessionrecordingsdestroy
- Lua path
app.integrations.posthog.sessionrecordingsdestroy- Full name
posthog.posthog_sessionrecordingsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sessionrecordingssharinglist Read
Sessionrecordingssharinglist
- Lua path
app.integrations.posthog.sessionrecordingssharinglist- Full name
posthog.posthog_sessionrecordingssharinglist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sessionrecordingssharingpasswordscreate Write
Create a new password for the sharing configuration.
- Lua path
app.integrations.posthog.sessionrecordingssharingpasswordscreate- Full name
posthog.posthog_sessionrecordingssharingpasswordscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sessionrecordingssharingpasswordsdestroy Write
Delete a password from the sharing configuration.
- Lua path
app.integrations.posthog.sessionrecordingssharingpasswordsdestroy- Full name
posthog.posthog_sessionrecordingssharingpasswordsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sessionrecordingssharingrefreshcreate Write
Sessionrecordingssharingrefreshcreate
- Lua path
app.integrations.posthog.sessionrecordingssharingrefreshcreate- Full name
posthog.posthog_sessionrecordingssharingrefreshcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sessionspropertydefinitionsretrieve Read
Sessionspropertydefinitionsretrieve
- Lua path
app.integrations.posthog.sessionspropertydefinitionsretrieve- Full name
posthog.posthog_sessionspropertydefinitionsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sessionsvaluesretrieve Read
Sessionsvaluesretrieve
- Lua path
app.integrations.posthog.sessionsvaluesretrieve- Full name
posthog.posthog_sessionsvaluesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
signalsprocessinglist Read
Return current processing state including pause status.
- Lua path
app.integrations.posthog.signalsprocessinglist- Full name
posthog.posthog_signalsprocessinglist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
signalsprocessingpauseupdate Write
View and control signal processing pipeline state for a team.
- Lua path
app.integrations.posthog.signalsprocessingpauseupdate- Full name
posthog.posthog_signalsprocessingpauseupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
signalsprocessingpausedestroy Write
View and control signal processing pipeline state for a team.
- Lua path
app.integrations.posthog.signalsprocessingpausedestroy- Full name
posthog.posthog_signalsprocessingpausedestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
signalsreportslist Read
Signalsreportslist
- Lua path
app.integrations.posthog.signalsreportslist- Full name
posthog.posthog_signalsreportslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
signalsreportsretrieve Read
Signalsreportsretrieve
- Lua path
app.integrations.posthog.signalsreportsretrieve- Full name
posthog.posthog_signalsreportsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
signalssourceconfigslist Read
Signalssourceconfigslist
- Lua path
app.integrations.posthog.signalssourceconfigslist- Full name
posthog.posthog_signalssourceconfigslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
signalssourceconfigscreate Write
Signalssourceconfigscreate
- Lua path
app.integrations.posthog.signalssourceconfigscreate- Full name
posthog.posthog_signalssourceconfigscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
signalssourceconfigsretrieve Read
Signalssourceconfigsretrieve
- Lua path
app.integrations.posthog.signalssourceconfigsretrieve- Full name
posthog.posthog_signalssourceconfigsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
signalssourceconfigsupdate Write
Signalssourceconfigsupdate
- Lua path
app.integrations.posthog.signalssourceconfigsupdate- Full name
posthog.posthog_signalssourceconfigsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
signalssourceconfigspartialupdate Write
Signalssourceconfigspartialupdate
- Lua path
app.integrations.posthog.signalssourceconfigspartialupdate- Full name
posthog.posthog_signalssourceconfigspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
signalssourceconfigsdestroy Write
Signalssourceconfigsdestroy
- Lua path
app.integrations.posthog.signalssourceconfigsdestroy- Full name
posthog.posthog_signalssourceconfigsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
subscriptionslist Read
Subscriptionslist
- Lua path
app.integrations.posthog.subscriptionslist- Full name
posthog.posthog_subscriptionslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
subscriptionscreate Write
Subscriptionscreate
- Lua path
app.integrations.posthog.subscriptionscreate- Full name
posthog.posthog_subscriptionscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
subscriptionsretrieve Read
Subscriptionsretrieve
- Lua path
app.integrations.posthog.subscriptionsretrieve- Full name
posthog.posthog_subscriptionsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
subscriptionsupdate Write
Subscriptionsupdate
- Lua path
app.integrations.posthog.subscriptionsupdate- Full name
posthog.posthog_subscriptionsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
subscriptionspartialupdate Write
Subscriptionspartialupdate
- Lua path
app.integrations.posthog.subscriptionspartialupdate- Full name
posthog.posthog_subscriptionspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
subscriptionsdestroy Write
Hard delete of this model is not allowed. Use a patch API call to set "deleted" to true
- Lua path
app.integrations.posthog.subscriptionsdestroy- Full name
posthog.posthog_subscriptionsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
subscriptionstestdeliverycreate Write
Subscriptionstestdeliverycreate
- Lua path
app.integrations.posthog.subscriptionstestdeliverycreate- Full name
posthog.posthog_subscriptionstestdeliverycreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
subscriptionssummaryquotaretrieve Read
Subscriptionssummaryquotaretrieve
- Lua path
app.integrations.posthog.subscriptionssummaryquotaretrieve- Full name
posthog.posthog_subscriptionssummaryquotaretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
surveyslist Read
Surveyslist
- Lua path
app.integrations.posthog.surveyslist- Full name
posthog.posthog_surveyslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
surveyscreate Write
Surveyscreate
- Lua path
app.integrations.posthog.surveyscreate- Full name
posthog.posthog_surveyscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
surveysretrieve Read
Surveysretrieve
- Lua path
app.integrations.posthog.surveysretrieve- Full name
posthog.posthog_surveysretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
surveysupdate Write
Surveysupdate
- Lua path
app.integrations.posthog.surveysupdate- Full name
posthog.posthog_surveysupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
surveyspartialupdate Write
Surveyspartialupdate
- Lua path
app.integrations.posthog.surveyspartialupdate- Full name
posthog.posthog_surveyspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
surveysdestroy Write
Surveysdestroy
- Lua path
app.integrations.posthog.surveysdestroy- Full name
posthog.posthog_surveysdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
surveysactivityretrieve Read
Surveysactivityretrieve
- Lua path
app.integrations.posthog.surveysactivityretrieve- Full name
posthog.posthog_surveysactivityretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
surveysarchivedresponseuuidsretrieve Read
Get list of archived response UUIDs for HogQL filtering. Returns list of UUIDs that the frontend can use to filter out archived responses in HogQL queries.
- Lua path
app.integrations.posthog.surveysarchivedresponseuuidsretrieve- Full name
posthog.posthog_surveysarchivedresponseuuidsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
surveysduplicatetoprojectscreate Write
Duplicate a survey to multiple projects in a single transaction. Accepts a list of target team IDs and creates a copy of the survey in each project. Uses an all-or-nothing approach - if any duplication fails, all changes are rolled back.
- Lua path
app.integrations.posthog.surveysduplicatetoprojectscreate- Full name
posthog.posthog_surveysduplicatetoprojectscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
surveysgeneratetranslationscreate Write
Surveysgeneratetranslationscreate
- Lua path
app.integrations.posthog.surveysgeneratetranslationscreate- Full name
posthog.posthog_surveysgeneratetranslationscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
surveysresponsesarchivecreate Write
Archive a single survey response.
- Lua path
app.integrations.posthog.surveysresponsesarchivecreate- Full name
posthog.posthog_surveysresponsesarchivecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
surveysresponsesunarchivecreate Write
Unarchive a single survey response.
- Lua path
app.integrations.posthog.surveysresponsesunarchivecreate- Full name
posthog.posthog_surveysresponsesunarchivecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
surveysstatsretrieve Read
Get survey response statistics for a specific survey. Args: datefrom: Optional ISO timestamp for start date (e.g. 2024-01-01T00:00:00Z) dateto: Optional ISO timestamp for end date (e.g. 2024-01-31T23:59:59Z) excludearchived: Optional boolean to exclude arch...
- Lua path
app.integrations.posthog.surveysstatsretrieve- Full name
posthog.posthog_surveysstatsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
surveyssummarizeresponsescreate Write
Surveyssummarizeresponsescreate
- Lua path
app.integrations.posthog.surveyssummarizeresponsescreate- Full name
posthog.posthog_surveyssummarizeresponsescreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
surveyssummaryheadlinecreate Write
Surveyssummaryheadlinecreate
- Lua path
app.integrations.posthog.surveyssummaryheadlinecreate- Full name
posthog.posthog_surveyssummaryheadlinecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
surveysallactivityretrieve Read
Surveysallactivityretrieve
- Lua path
app.integrations.posthog.surveysallactivityretrieve- Full name
posthog.posthog_surveysallactivityretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
surveysresponsescountretrieve Read
Get response counts for all surveys. Args: excludearchived: Optional boolean to exclude archived responses (default: false, includes archived) surveyids: Optional comma-separated list of survey IDs to filter by Returns: Dictionary mapping survey IDs to resp...
- Lua path
app.integrations.posthog.surveysresponsescountretrieve- Full name
posthog.posthog_surveysresponsescountretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
surveysglobalstatsretrieve Read
Get aggregated response statistics across all surveys. Args: datefrom: Optional ISO timestamp for start date (e.g. 2024-01-01T00:00:00Z) dateto: Optional ISO timestamp for end date (e.g. 2024-01-31T23:59:59Z) Returns: Aggregated statistics across all survey...
- Lua path
app.integrations.posthog.surveysglobalstatsretrieve- Full name
posthog.posthog_surveysglobalstatsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
taskautomationslist Read
Taskautomationslist
- Lua path
app.integrations.posthog.taskautomationslist- Full name
posthog.posthog_taskautomationslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
taskautomationscreate Write
Taskautomationscreate
- Lua path
app.integrations.posthog.taskautomationscreate- Full name
posthog.posthog_taskautomationscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
taskautomationsretrieve Read
Taskautomationsretrieve
- Lua path
app.integrations.posthog.taskautomationsretrieve- Full name
posthog.posthog_taskautomationsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
taskautomationsupdate Write
Taskautomationsupdate
- Lua path
app.integrations.posthog.taskautomationsupdate- Full name
posthog.posthog_taskautomationsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
taskautomationspartialupdate Write
Taskautomationspartialupdate
- Lua path
app.integrations.posthog.taskautomationspartialupdate- Full name
posthog.posthog_taskautomationspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
taskautomationsdestroy Write
Taskautomationsdestroy
- Lua path
app.integrations.posthog.taskautomationsdestroy- Full name
posthog.posthog_taskautomationsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
taskautomationsruncreate Write
Taskautomationsruncreate
- Lua path
app.integrations.posthog.taskautomationsruncreate- Full name
posthog.posthog_taskautomationsruncreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_tasks Read
List tasks
- Lua path
app.integrations.posthog.list_tasks- Full name
posthog.posthog_taskslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
taskscreate Write
API for managing tasks within a project. Tasks represent units of work to be performed by an agent.
- Lua path
app.integrations.posthog.taskscreate- Full name
posthog.posthog_taskscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
tasksretrieve Read
API for managing tasks within a project. Tasks represent units of work to be performed by an agent.
- Lua path
app.integrations.posthog.tasksretrieve- Full name
posthog.posthog_tasksretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
tasksupdate Write
API for managing tasks within a project. Tasks represent units of work to be performed by an agent.
- Lua path
app.integrations.posthog.tasksupdate- Full name
posthog.posthog_tasksupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
taskspartialupdate Write
API for managing tasks within a project. Tasks represent units of work to be performed by an agent.
- Lua path
app.integrations.posthog.taskspartialupdate- Full name
posthog.posthog_taskspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
tasksdestroy Write
API for managing tasks within a project. Tasks represent units of work to be performed by an agent.
- Lua path
app.integrations.posthog.tasksdestroy- Full name
posthog.posthog_tasksdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
run_task Write
Run task
- Lua path
app.integrations.posthog.run_task- Full name
posthog.posthog_tasksruncreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
finalize_staged_direct_uploads_task_attachments Write
Finalize staged direct uploads for task attachments
- Lua path
app.integrations.posthog.finalize_staged_direct_uploads_task_attachments- Full name
posthog.posthog_tasksstagedartifactsfinalizeuploadcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
prepare_staged_direct_uploads_task_attachments Write
Prepare staged direct uploads for task attachments
- Lua path
app.integrations.posthog.prepare_staged_direct_uploads_task_attachments- Full name
posthog.posthog_tasksstagedartifactsprepareuploadcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_task_runs Read
List task runs
- Lua path
app.integrations.posthog.list_task_runs- Full name
posthog.posthog_tasksrunslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_task_run Write
Create task run
- Lua path
app.integrations.posthog.create_task_run- Full name
posthog.posthog_tasksrunscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
tasksrunsretrieve Read
API for managing task runs. Each run represents an execution of a task.
- Lua path
app.integrations.posthog.tasksrunsretrieve- Full name
posthog.posthog_tasksrunsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_task_run Write
Update task run
- Lua path
app.integrations.posthog.update_task_run- Full name
posthog.posthog_tasksrunspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
append_log_entries Write
Append log entries
- Lua path
app.integrations.posthog.append_log_entries- Full name
posthog.posthog_tasksrunsappendlogcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
upload_artifacts_task_run Write
Upload artifacts for a task run
- Lua path
app.integrations.posthog.upload_artifacts_task_run- Full name
posthog.posthog_tasksrunsartifactscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
download_artifact_through_backend Write
Download an artifact through the backend
- Lua path
app.integrations.posthog.download_artifact_through_backend- Full name
posthog.posthog_tasksrunsartifactsdownloadcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
finalize_direct_uploads_task_run_artifacts Write
Finalize direct uploads for task run artifacts
- Lua path
app.integrations.posthog.finalize_direct_uploads_task_run_artifacts- Full name
posthog.posthog_tasksrunsartifactsfinalizeuploadcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
prepare_direct_uploads_task_run_artifacts Write
Prepare direct uploads for task run artifacts
- Lua path
app.integrations.posthog.prepare_direct_uploads_task_run_artifacts- Full name
posthog.posthog_tasksrunsartifactsprepareuploadcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
generate_presigned_url_artifact Write
Generate presigned URL for an artifact
- Lua path
app.integrations.posthog.generate_presigned_url_artifact- Full name
posthog.posthog_tasksrunsartifactspresigncreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
send_command_task_run Write
Send command to task run
- Lua path
app.integrations.posthog.send_command_task_run- Full name
posthog.posthog_tasksrunscommandcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_sandbox_connection_token Read
Get sandbox connection token
- Lua path
app.integrations.posthog.get_sandbox_connection_token- Full name
posthog.posthog_tasksrunsconnectiontokenretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_task_run_logs Read
Get task run logs
- Lua path
app.integrations.posthog.get_task_run_logs- Full name
posthog.posthog_tasksrunslogsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
relay_run_message_slack Write
Relay run message to Slack
- Lua path
app.integrations.posthog.relay_run_message_slack- Full name
posthog.posthog_tasksrunsrelaymessagecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
resume_task_run_cloud Write
Resume task run in cloud
- Lua path
app.integrations.posthog.resume_task_run_cloud- Full name
posthog.posthog_tasksrunsresumeincloudcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_filtered_task_run_session_logs Read
Get filtered task run session logs
- Lua path
app.integrations.posthog.get_filtered_task_run_session_logs- Full name
posthog.posthog_tasksrunssessionlogsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
set_run_output Write
Set run output
- Lua path
app.integrations.posthog.set_run_output- Full name
posthog.posthog_tasksrunssetoutputpartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
start_task_run Write
Start task run
- Lua path
app.integrations.posthog.start_task_run- Full name
posthog.posthog_tasksrunsstartcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
tasksrunsstreamretrieve Read
API for managing task runs. Each run represents an execution of a task.
- Lua path
app.integrations.posthog.tasksrunsstreamretrieve- Full name
posthog.posthog_tasksrunsstreamretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_distinct_task_repositories Read
List distinct task repositories
- Lua path
app.integrations.posthog.list_distinct_task_repositories- Full name
posthog.posthog_tasksrepositoriesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_repository_readiness Read
Get repository readiness
- Lua path
app.integrations.posthog.get_repository_readiness- Full name
posthog.posthog_tasksrepositoryreadinessretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fetch_task_summaries_by_id Write
Fetch task summaries by ID
- Lua path
app.integrations.posthog.fetch_task_summaries_by_id- Full name
posthog.posthog_taskssummariescreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
uploadedmediacreate Write
When object storage is available this API allows upload of media which can be used, for example, in text cards on dashboards. Uploaded media must have a content type beginning with 'image/' and be less than 4MB.
- Lua path
app.integrations.posthog.uploadedmediacreate- Full name
posthog.posthog_uploadedmediacreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
visualreviewreposlist Read
List all projects for the team.
- Lua path
app.integrations.posthog.visualreviewreposlist- Full name
posthog.posthog_visualreviewreposlist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
visualreviewreposcreate Write
Create a new repo.
- Lua path
app.integrations.posthog.visualreviewreposcreate- Full name
posthog.posthog_visualreviewreposcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
visualreviewreposretrieve Read
Get a repo by ID.
- Lua path
app.integrations.posthog.visualreviewreposretrieve- Full name
posthog.posthog_visualreviewreposretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
visualreviewrepospartialupdate Write
Update a repo's settings.
- Lua path
app.integrations.posthog.visualreviewrepospartialupdate- Full name
posthog.posthog_visualreviewrepospartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
visualreviewreposbaselinesretrieve Read
Snapshots overview for a repo: every identifier with a current baseline (latest non-superseded master/main run per runtype), plus tolerate counts, active quarantine state, and a 30-day stability sparkline. Capped at 5000 entries - sets truncated and returns...
- Lua path
app.integrations.posthog.visualreviewreposbaselinesretrieve- Full name
posthog.posthog_visualreviewreposbaselinesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
visualreviewreposquarantinelist Read
List quarantined identifiers. Without filter: active only. With identifier: full history.
- Lua path
app.integrations.posthog.visualreviewreposquarantinelist- Full name
posthog.posthog_visualreviewreposquarantinelist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
visualreviewreposquarantinecreate Write
Quarantine a snapshot identifier for a specific run type.
- Lua path
app.integrations.posthog.visualreviewreposquarantinecreate- Full name
posthog.posthog_visualreviewreposquarantinecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
visualreviewreposquarantineexpirecreate Write
Expire all active quarantine entries for an identifier.
- Lua path
app.integrations.posthog.visualreviewreposquarantineexpirecreate- Full name
posthog.posthog_visualreviewreposquarantineexpirecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
visualreviewreposthumbnailsretrieve Read
Serve a snapshot thumbnail by identifier. Returns WebP with ETag caching.
- Lua path
app.integrations.posthog.visualreviewreposthumbnailsretrieve- Full name
posthog.posthog_visualreviewreposthumbnailsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
visualreviewreposrunslist Read
List runs in this repo, optionally filtered by review state.
- Lua path
app.integrations.posthog.visualreviewreposrunslist- Full name
posthog.posthog_visualreviewreposrunslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
visualreviewreposrunscountsretrieve Read
Review state counts for runs in this repo.
- Lua path
app.integrations.posthog.visualreviewreposrunscountsretrieve- Full name
posthog.posthog_visualreviewreposrunscountsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
visualreviewrepossnapshotslist Read
Deduped baseline timeline for a snapshot identity. Newest first.
- Lua path
app.integrations.posthog.visualreviewrepossnapshotslist- Full name
posthog.posthog_visualreviewrepossnapshotslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
visualreviewrunslist Read
List runs for the team, optionally filtered by review state, PR number, commit SHA, or branch.
- Lua path
app.integrations.posthog.visualreviewrunslist- Full name
posthog.posthog_visualreviewrunslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
visualreviewrunscreate Write
Create a new run from a CI manifest.
- Lua path
app.integrations.posthog.visualreviewrunscreate- Full name
posthog.posthog_visualreviewrunscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
visualreviewrunsretrieve Read
Get run status and summary.
- Lua path
app.integrations.posthog.visualreviewrunsretrieve- Full name
posthog.posthog_visualreviewrunsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
visualreviewrunsaddsnapshotscreate Write
Add a batch of snapshots to a pending run (shard-based flow).
- Lua path
app.integrations.posthog.visualreviewrunsaddsnapshotscreate- Full name
posthog.posthog_visualreviewrunsaddsnapshotscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
visualreviewrunsapprovecreate Write
Approve visual changes for snapshots in this run. With approveall=true, approves all changed+new snapshots and returns signed baseline YAML. With specific snapshots, approves only those.
- Lua path
app.integrations.posthog.visualreviewrunsapprovecreate- Full name
posthog.posthog_visualreviewrunsapprovecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
visualreviewrunsautoapprovecreate Write
CLI auto-approve: approve all and return baseline YAML for local write.
- Lua path
app.integrations.posthog.visualreviewrunsautoapprovecreate- Full name
posthog.posthog_visualreviewrunsautoapprovecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
visualreviewrunscompletecreate Write
Complete a run: detect removals, verify uploads, trigger diff processing.
- Lua path
app.integrations.posthog.visualreviewrunscompletecreate- Full name
posthog.posthog_visualreviewrunscompletecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
visualreviewrunsrecomputecreate Write
Re-evaluate quarantine and counts, update commit status, and optionally rerun the CI job.
- Lua path
app.integrations.posthog.visualreviewrunsrecomputecreate- Full name
posthog.posthog_visualreviewrunsrecomputecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
visualreviewrunssnapshothistorylist Read
Recent change history for a snapshot identifier across runs.
- Lua path
app.integrations.posthog.visualreviewrunssnapshothistorylist- Full name
posthog.posthog_visualreviewrunssnapshothistorylist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
visualreviewrunssnapshotslist Read
Get all snapshots for a run with diff results.
- Lua path
app.integrations.posthog.visualreviewrunssnapshotslist- Full name
posthog.posthog_visualreviewrunssnapshotslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
visualreviewrunstoleratecreate Write
Mark a changed snapshot as a known tolerated alternate.
- Lua path
app.integrations.posthog.visualreviewrunstoleratecreate- Full name
posthog.posthog_visualreviewrunstoleratecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
visualreviewrunstoleratedhasheslist Read
List known tolerated hashes for a snapshot identifier.
- Lua path
app.integrations.posthog.visualreviewrunstoleratedhasheslist- Full name
posthog.posthog_visualreviewrunstoleratedhasheslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
visualreviewrunscountsretrieve Read
Review state counts for the runs list.
- Lua path
app.integrations.posthog.visualreviewrunscountsretrieve- Full name
posthog.posthog_visualreviewrunscountsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
warehousedaglist Read
Return this team's DAG as a set of edges and nodes
- Lua path
app.integrations.posthog.warehousedaglist- Full name
posthog.posthog_warehousedaglist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
warehousemodelpathslist Read
Warehousemodelpathslist
- Lua path
app.integrations.posthog.warehousemodelpathslist- Full name
posthog.posthog_warehousemodelpathslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
warehousemodelpathsretrieve Read
Warehousemodelpathsretrieve
- Lua path
app.integrations.posthog.warehousemodelpathsretrieve- Full name
posthog.posthog_warehousemodelpathsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
warehousesavedquerieslist Read
Create, Read, Update and Delete Warehouse Tables.
- Lua path
app.integrations.posthog.warehousesavedquerieslist- Full name
posthog.posthog_warehousesavedquerieslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
warehousesavedqueriescreate Write
Create, Read, Update and Delete Warehouse Tables.
- Lua path
app.integrations.posthog.warehousesavedqueriescreate- Full name
posthog.posthog_warehousesavedqueriescreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
warehousesavedqueriesretrieve Read
Create, Read, Update and Delete Warehouse Tables.
- Lua path
app.integrations.posthog.warehousesavedqueriesretrieve- Full name
posthog.posthog_warehousesavedqueriesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
warehousesavedqueriesupdate Write
Create, Read, Update and Delete Warehouse Tables.
- Lua path
app.integrations.posthog.warehousesavedqueriesupdate- Full name
posthog.posthog_warehousesavedqueriesupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
warehousesavedqueriespartialupdate Write
Create, Read, Update and Delete Warehouse Tables.
- Lua path
app.integrations.posthog.warehousesavedqueriespartialupdate- Full name
posthog.posthog_warehousesavedqueriespartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
warehousesavedqueriesdestroy Write
Create, Read, Update and Delete Warehouse Tables.
- Lua path
app.integrations.posthog.warehousesavedqueriesdestroy- Full name
posthog.posthog_warehousesavedqueriesdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
warehousesavedqueriesactivityretrieve Read
Create, Read, Update and Delete Warehouse Tables.
- Lua path
app.integrations.posthog.warehousesavedqueriesactivityretrieve- Full name
posthog.posthog_warehousesavedqueriesactivityretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
warehousesavedqueriesancestorscreate Write
Return the ancestors of this saved query. By default, we return the immediate parents. The level parameter can be used to look further back into the ancestor tree. If level overshoots (i.e. points to only ancestors beyond the root), we return an empty list.
- Lua path
app.integrations.posthog.warehousesavedqueriesancestorscreate- Full name
posthog.posthog_warehousesavedqueriesancestorscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
warehousesavedqueriescancelcreate Write
Cancel a running saved query workflow.
- Lua path
app.integrations.posthog.warehousesavedqueriescancelcreate- Full name
posthog.posthog_warehousesavedqueriescancelcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
warehousesavedqueriesdependenciesretrieve Read
Return the count of immediate upstream and downstream dependencies for this saved query.
- Lua path
app.integrations.posthog.warehousesavedqueriesdependenciesretrieve- Full name
posthog.posthog_warehousesavedqueriesdependenciesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
warehousesavedqueriesdescendantscreate Write
Return the descendants of this saved query. By default, we return the immediate children. The level parameter can be used to look further ahead into the descendants tree. If level overshoots (i.e. points to only descendants further than a leaf), we return a...
- Lua path
app.integrations.posthog.warehousesavedqueriesdescendantscreate- Full name
posthog.posthog_warehousesavedqueriesdescendantscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
warehousesavedqueriesmaterializecreate Write
Enable materialization for this saved query with a 24-hour sync frequency.
- Lua path
app.integrations.posthog.warehousesavedqueriesmaterializecreate- Full name
posthog.posthog_warehousesavedqueriesmaterializecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
warehousesavedqueriesrevertmaterializationcreate Write
Undo materialization, revert back to the original view. (i.e. delete the materialized table and the schedule)
- Lua path
app.integrations.posthog.warehousesavedqueriesrevertmaterializationcreate- Full name
posthog.posthog_warehousesavedqueriesrevertmaterializationcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
warehousesavedqueriesruncreate Write
Run this saved query.
- Lua path
app.integrations.posthog.warehousesavedqueriesruncreate- Full name
posthog.posthog_warehousesavedqueriesruncreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
warehousesavedqueriesrunhistoryretrieve Read
Return the recent run history (up to 5 most recent) for this materialized view.
- Lua path
app.integrations.posthog.warehousesavedqueriesrunhistoryretrieve- Full name
posthog.posthog_warehousesavedqueriesrunhistoryretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
warehousesavedqueriesresumeschedulescreate Write
Resume paused materialization schedules for multiple matviews. Accepts a list of view IDs in the request body: {"viewids": ["id1", "id2", ...]} This endpoint is idempotent - calling it on already running or non-existent schedules is safe.
- Lua path
app.integrations.posthog.warehousesavedqueriesresumeschedulescreate- Full name
posthog.posthog_warehousesavedqueriesresumeschedulescreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
warehousesavedqueryfolderslist Read
Warehousesavedqueryfolderslist
- Lua path
app.integrations.posthog.warehousesavedqueryfolderslist- Full name
posthog.posthog_warehousesavedqueryfolderslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
warehousesavedqueryfolderscreate Write
Warehousesavedqueryfolderscreate
- Lua path
app.integrations.posthog.warehousesavedqueryfolderscreate- Full name
posthog.posthog_warehousesavedqueryfolderscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
warehousesavedqueryfoldersretrieve Read
Warehousesavedqueryfoldersretrieve
- Lua path
app.integrations.posthog.warehousesavedqueryfoldersretrieve- Full name
posthog.posthog_warehousesavedqueryfoldersretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
warehousesavedqueryfolderspartialupdate Write
Warehousesavedqueryfolderspartialupdate
- Lua path
app.integrations.posthog.warehousesavedqueryfolderspartialupdate- Full name
posthog.posthog_warehousesavedqueryfolderspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
warehousesavedqueryfoldersdestroy Write
Warehousesavedqueryfoldersdestroy
- Lua path
app.integrations.posthog.warehousesavedqueryfoldersdestroy- Full name
posthog.posthog_warehousesavedqueryfoldersdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
warehousetableslist Read
Create, Read, Update and Delete Warehouse Tables.
- Lua path
app.integrations.posthog.warehousetableslist- Full name
posthog.posthog_warehousetableslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
warehousetablescreate Write
Create, Read, Update and Delete Warehouse Tables.
- Lua path
app.integrations.posthog.warehousetablescreate- Full name
posthog.posthog_warehousetablescreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
warehousetablesretrieve Read
Create, Read, Update and Delete Warehouse Tables.
- Lua path
app.integrations.posthog.warehousetablesretrieve- Full name
posthog.posthog_warehousetablesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
warehousetablesupdate Write
Create, Read, Update and Delete Warehouse Tables.
- Lua path
app.integrations.posthog.warehousetablesupdate- Full name
posthog.posthog_warehousetablesupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
warehousetablespartialupdate Write
Create, Read, Update and Delete Warehouse Tables.
- Lua path
app.integrations.posthog.warehousetablespartialupdate- Full name
posthog.posthog_warehousetablespartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
warehousetablesdestroy Write
Create, Read, Update and Delete Warehouse Tables.
- Lua path
app.integrations.posthog.warehousetablesdestroy- Full name
posthog.posthog_warehousetablesdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
warehousetablesrefreshschemacreate Write
Create, Read, Update and Delete Warehouse Tables.
- Lua path
app.integrations.posthog.warehousetablesrefreshschemacreate- Full name
posthog.posthog_warehousetablesrefreshschemacreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
warehousetablesupdateschemacreate Write
Create, Read, Update and Delete Warehouse Tables.
- Lua path
app.integrations.posthog.warehousetablesupdateschemacreate- Full name
posthog.posthog_warehousetablesupdateschemacreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
warehousetablesfilecreate Write
Create, Read, Update and Delete Warehouse Tables.
- Lua path
app.integrations.posthog.warehousetablesfilecreate- Full name
posthog.posthog_warehousetablesfilecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
warehouseviewlinklist Read
Create, Read, Update and Delete View Columns.
- Lua path
app.integrations.posthog.warehouseviewlinklist- Full name
posthog.posthog_warehouseviewlinklist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
warehouseviewlinkcreate Write
Create, Read, Update and Delete View Columns.
- Lua path
app.integrations.posthog.warehouseviewlinkcreate- Full name
posthog.posthog_warehouseviewlinkcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
warehouseviewlinkretrieve Read
Create, Read, Update and Delete View Columns.
- Lua path
app.integrations.posthog.warehouseviewlinkretrieve- Full name
posthog.posthog_warehouseviewlinkretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
warehouseviewlinkupdate Write
Create, Read, Update and Delete View Columns.
- Lua path
app.integrations.posthog.warehouseviewlinkupdate- Full name
posthog.posthog_warehouseviewlinkupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
warehouseviewlinkpartialupdate Write
Create, Read, Update and Delete View Columns.
- Lua path
app.integrations.posthog.warehouseviewlinkpartialupdate- Full name
posthog.posthog_warehouseviewlinkpartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
warehouseviewlinkdestroy Write
Create, Read, Update and Delete View Columns.
- Lua path
app.integrations.posthog.warehouseviewlinkdestroy- Full name
posthog.posthog_warehouseviewlinkdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
warehouseviewlinkvalidatecreate Write
Create, Read, Update and Delete View Columns.
- Lua path
app.integrations.posthog.warehouseviewlinkvalidatecreate- Full name
posthog.posthog_warehouseviewlinkvalidatecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
warehouseviewlinkslist Read
Create, Read, Update and Delete View Columns.
- Lua path
app.integrations.posthog.warehouseviewlinkslist- Full name
posthog.posthog_warehouseviewlinkslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
warehouseviewlinkscreate Write
Create, Read, Update and Delete View Columns.
- Lua path
app.integrations.posthog.warehouseviewlinkscreate- Full name
posthog.posthog_warehouseviewlinkscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
warehouseviewlinksretrieve Read
Create, Read, Update and Delete View Columns.
- Lua path
app.integrations.posthog.warehouseviewlinksretrieve- Full name
posthog.posthog_warehouseviewlinksretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
warehouseviewlinksupdate Write
Create, Read, Update and Delete View Columns.
- Lua path
app.integrations.posthog.warehouseviewlinksupdate- Full name
posthog.posthog_warehouseviewlinksupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
warehouseviewlinkspartialupdate Write
Create, Read, Update and Delete View Columns.
- Lua path
app.integrations.posthog.warehouseviewlinkspartialupdate- Full name
posthog.posthog_warehouseviewlinkspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
warehouseviewlinksdestroy Write
Create, Read, Update and Delete View Columns.
- Lua path
app.integrations.posthog.warehouseviewlinksdestroy- Full name
posthog.posthog_warehouseviewlinksdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
warehouseviewlinksvalidatecreate Write
Create, Read, Update and Delete View Columns.
- Lua path
app.integrations.posthog.warehouseviewlinksvalidatecreate- Full name
posthog.posthog_warehouseviewlinksvalidatecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
webexperimentslist Read
Webexperimentslist
- Lua path
app.integrations.posthog.webexperimentslist- Full name
posthog.posthog_webexperimentslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
webexperimentscreate Write
Webexperimentscreate
- Lua path
app.integrations.posthog.webexperimentscreate- Full name
posthog.posthog_webexperimentscreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
webexperimentsretrieve Read
Webexperimentsretrieve
- Lua path
app.integrations.posthog.webexperimentsretrieve- Full name
posthog.posthog_webexperimentsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
webexperimentsupdate Write
Webexperimentsupdate
- Lua path
app.integrations.posthog.webexperimentsupdate- Full name
posthog.posthog_webexperimentsupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
webexperimentspartialupdate Write
Webexperimentspartialupdate
- Lua path
app.integrations.posthog.webexperimentspartialupdate- Full name
posthog.posthog_webexperimentspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
webexperimentsdestroy Write
Webexperimentsdestroy
- Lua path
app.integrations.posthog.webexperimentsdestroy- Full name
posthog.posthog_webexperimentsdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
publichogfunctiontemplateslist Read
Publichogfunctiontemplateslist
- Lua path
app.integrations.posthog.publichogfunctiontemplateslist- Full name
posthog.posthog_publichogfunctiontemplateslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
userhomesettingsretrieve Read
Get the authenticated user's pinned sidebar tabs and configured homepage for the current team. Pass @me as the UUID.
- Lua path
app.integrations.posthog.userhomesettingsretrieve- Full name
posthog.posthog_userhomesettingsretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
userhomesettingspartialupdate Write
Update the authenticated user's pinned sidebar tabs and/or homepage for the current team. Pass @me as the UUID. Send tabs to replace the pinned tab list, homepage to set the home destination (any PostHog URL - dashboard, insight, search results, scene). Eit...
- Lua path
app.integrations.posthog.userhomesettingspartialupdate- Full name
posthog.posthog_userhomesettingspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
userslist Read
Userslist
- Lua path
app.integrations.posthog.userslist- Full name
posthog.posthog_userslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
userssignalautonomyretrieve Read
Per-user signal autonomy config (singleton keyed by user). GET /api/users/ /signalautonomy/ - current config (or 404) POST /api/users/ /signalautonomy/ - create or update DELETE /api/users/ /signalautonomy/ - remove (opt out)
- Lua path
app.integrations.posthog.userssignalautonomyretrieve- Full name
posthog.posthog_userssignalautonomyretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
userssignalautonomycreate Write
Per-user signal autonomy config (singleton keyed by user). GET /api/users/ /signalautonomy/ - current config (or 404) POST /api/users/ /signalautonomy/ - create or update DELETE /api/users/ /signalautonomy/ - remove (opt out)
- Lua path
app.integrations.posthog.userssignalautonomycreate- Full name
posthog.posthog_userssignalautonomycreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
userssignalautonomydestroy Write
Per-user signal autonomy config (singleton keyed by user). GET /api/users/ /signalautonomy/ - current config (or 404) POST /api/users/ /signalautonomy/ - create or update DELETE /api/users/ /signalautonomy/ - remove (opt out)
- Lua path
app.integrations.posthog.userssignalautonomydestroy- Full name
posthog.posthog_userssignalautonomydestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
usersretrieve Read
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.
- Lua path
app.integrations.posthog.usersretrieve- Full name
posthog.posthog_usersretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
usersupdate Write
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.
- Lua path
app.integrations.posthog.usersupdate- Full name
posthog.posthog_usersupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
userspartialupdate Write
Update one or more of the authenticated user's profile fields or settings.
- Lua path
app.integrations.posthog.userspartialupdate- Full name
posthog.posthog_userspartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
usersdestroy Write
Usersdestroy
- Lua path
app.integrations.posthog.usersdestroy- Full name
posthog.posthog_usersdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
usersgithubloginretrieve Read
Usersgithubloginretrieve
- Lua path
app.integrations.posthog.usersgithubloginretrieve- Full name
posthog.posthog_usersgithubloginretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
usershedgehogconfigretrieve Read
Usershedgehogconfigretrieve
- Lua path
app.integrations.posthog.usershedgehogconfigretrieve- Full name
posthog.posthog_usershedgehogconfigretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
usershedgehogconfigpartialupdate Write
Usershedgehogconfigpartialupdate
- Lua path
app.integrations.posthog.usershedgehogconfigpartialupdate- Full name
posthog.posthog_usershedgehogconfigpartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_personal_github_integrations Read
List personal GitHub integrations
- Lua path
app.integrations.posthog.list_personal_github_integrations- Full name
posthog.posthog_usersintegrationslist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
disconnect_personal_github_integration Write
Disconnect a personal GitHub integration
- Lua path
app.integrations.posthog.disconnect_personal_github_integration- Full name
posthog.posthog_usersintegrationsgithubdestroy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_branches_personal_github_installation_repository Read
List branches for a personal GitHub installation repository
- Lua path
app.integrations.posthog.list_branches_personal_github_installation_repository- Full name
posthog.posthog_usersintegrationsgithubbranchesretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_repositories_personal_github_installation Read
List repositories for a personal GitHub installation
- Lua path
app.integrations.posthog.list_repositories_personal_github_installation- Full name
posthog.posthog_usersintegrationsgithubreposretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
refresh_repositories_personal_github_installation Write
Refresh repositories for a personal GitHub installation
- Lua path
app.integrations.posthog.refresh_repositories_personal_github_installation- Full name
posthog.posthog_usersintegrationsgithubreposrefreshcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
start_github_personal_integration_linking Write
Start GitHub personal integration linking
- Lua path
app.integrations.posthog.start_github_personal_integration_linking- Full name
posthog.posthog_usersintegrationsgithubstartcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
usersonboardingskipcreate Write
Mark the current user as having exited onboarding with a non-delegated reason. Idempotent: the skip timestamp is only set on the first successful call. Callers wanting to delegate setup to a teammate must use the dedicated /organizations/{id}/invites/delega...
- Lua path
app.integrations.posthog.usersonboardingskipcreate- Full name
posthog.posthog_usersonboardingskipcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
usersscenepersonalisationcreate Write
Usersscenepersonalisationcreate
- Lua path
app.integrations.posthog.usersscenepersonalisationcreate- Full name
posthog.posthog_usersscenepersonalisationcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
usersstart2fasetupretrieve Read
Usersstart2fasetupretrieve
- Lua path
app.integrations.posthog.usersstart2fasetupretrieve- Full name
posthog.posthog_usersstart2fasetupretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
userstwofactorbackupcodescreate Write
Generate new backup codes, invalidating any existing ones
- Lua path
app.integrations.posthog.userstwofactorbackupcodescreate- Full name
posthog.posthog_userstwofactorbackupcodescreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
userstwofactordisablecreate Write
Disable 2FA and remove all related devices
- Lua path
app.integrations.posthog.userstwofactordisablecreate- Full name
posthog.posthog_userstwofactordisablecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
userstwofactorstartsetupretrieve Read
Userstwofactorstartsetupretrieve
- Lua path
app.integrations.posthog.userstwofactorstartsetupretrieve- Full name
posthog.posthog_userstwofactorstartsetupretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
userstwofactorstatusretrieve Read
Get current 2FA status including backup codes if enabled
- Lua path
app.integrations.posthog.userstwofactorstatusretrieve- Full name
posthog.posthog_userstwofactorstatusretrieve
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
userstwofactorvalidatecreate Write
Userstwofactorvalidatecreate
- Lua path
app.integrations.posthog.userstwofactorvalidatecreate- Full name
posthog.posthog_userstwofactorvalidatecreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
usersvalidate2facreate Write
Usersvalidate2facreate
- Lua path
app.integrations.posthog.usersvalidate2facreate- Full name
posthog.posthog_usersvalidate2facreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
userscancelemailchangerequestpartialupdate Write
Userscancelemailchangerequestpartialupdate
- Lua path
app.integrations.posthog.userscancelemailchangerequestpartialupdate- Full name
posthog.posthog_userscancelemailchangerequestpartialupdate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
usersrequestemailverificationcreate Write
Usersrequestemailverificationcreate
- Lua path
app.integrations.posthog.usersrequestemailverificationcreate- Full name
posthog.posthog_usersrequestemailverificationcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
usersverifyemailcreate Write
Usersverifyemailcreate
- Lua path
app.integrations.posthog.usersverifyemailcreate- Full name
posthog.posthog_usersverifyemailcreate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||