provider persons PUT
/api/projects/{project_id}/persons/{id}/ @utdk/posthog
/api/projects/{project_id}/persons/{id}/ 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.
- format query
- enum: csv, json
- id path required
- A unique value identifying this person. Accepts both numeric ID and UUID.
- 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.personsUpdate()