provider user_interview_topics POST
/api/projects/{project_id}/user_interview_topics/{id}/add_interviewee/ @utdk/posthog
/api/projects/{project_id}/user_interview_topics/{id}/add_interviewee/ user_interview_topics_add_interviewee_create
Add a single interviewee to this topic. Email-shaped identifiers (including the `Display Name <email@host>` form) are appended to `interviewee_emails`; everything else is appended to `interviewee_distinct_ids`. Idempotent — adding an identifier that's already present leaves the topic unchanged. Returns the updated topic.
- id path required
- A UUID string identifying this user interview topic.
- 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.userInterviewTopicsAddIntervieweeCreate()