provider user_interview_topics POST /api/projects/{project_id}/user_interview_topics/{id}/remove_interviewee/
@utdk/posthog /api/projects/{project_id}/user_interview_topics/{id}/remove_interviewee/
user_interview_topics_remove_interviewee_create
Remove an interviewee from this topic. Drops the identifier from both `interviewee_emails` and `interviewee_distinct_ids`, and disables any active SharingConfiguration linked to an IntervieweeContext for that identifier on this topic so the removed person can no longer open their interview link. Idempotent — removing an identifier that isn't present is a no-op. 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
userInterviewTopicsRemoveIntervieweeCreate
POST/api/projects/{project_id}/user_interview_topics/{id}/remove_interviewee/
Remove an interviewee from this topic. Drops the identifier from both `interviewee_emails` and `interviewee_distinct_ids`, and disables any active SharingConfiguration linked to an IntervieweeContext for that identifier on this topic so the removed person can no longer open their interview link. Idempotent — removing an identifier that isn't present is a no-op. Returns the updated topic.

Parameters

required

A UUID string identifying this user interview topic.

required

Project ID of the project you're trying to access. To find the ID of the project, make a call to /api/projects/.

Input

required

Email address or PostHog distinct ID for the interviewee. Email-shaped values (including the `Display Name <email@host>` form) are routed to `interviewee_emails`; everything else lands in `interviewee_distinct_ids`.

Configure credentials above to enable sending.

Code snippet
Updates live as you fill in the form above.

TypeScript

import posthog from '@utdk/posthog';

await posthog.userInterviewTopicsRemoveIntervieweeCreate()