provider persons PUT
/api/environments/{environment_id}/persons/{id}/ @utdk/posthog
/api/environments/{environment_id}/persons/{id}/ environments_persons_update
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 property use the `delete_property` endpoint.
- environment_id path required
- Deprecated. Use /api/projects/{project_id}/ instead.
- string
- format query
- enum: csv, json
- id path required
- A unique value identifying this person. Accepts both numeric ID and UUID.
- 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.environmentsPersonsUpdate()