provider hog_flows POST
/api/projects/{project_id}/hog_flows/{id}/rerun/ @utdk/posthog
/api/projects/{project_id}/hog_flows/{id}/rerun/ hog_flows_rerun_create
Rerun past invocations of this hog flow from their stored payloads.
Same shape and semantics as the hog function rerun endpoint —
proxies through to the CDP worker, which reads matching rows from
ClickHouse, rehydrates from `invocation_globals`, and re-enqueues
onto cyclotron with `is_retry=1`.
Because rerun replays historical event/person/group data, it requires
`person:read` and `group:read` on top of `hog_flow:write`.
- id path required
- A UUID string identifying this hog flow.
- string
- project_id path required
- Project ID of the project you're trying to access. To find the ID of the project, make a call to /api/projects/.
- string
Try it
Authentication
Configure credentials for PostHog API
Code snippet
Updates live as you fill in the form above.
TypeScript
import posthog from '@utdk/posthog';
await posthog.hogFlowsRerunCreate()