selfId$

View as MarkdownOpen in Claude
get selfId$(): Observable<string | null>

Observable of the local participant’s member ID.

selfId

get selfId(): string | null

Local participant’s member ID, or null if not joined.

Examples

call.selfId$.subscribe((selfId) => {
console.log('selfId:', selfId);
});