> For a complete index of all SignalWire documentation pages, fetch https://signalwire.com/docs/llms.txt

# memberJoined$

> Observable of member-joined events, emitted when a remote participant joins the call.

```ts
get memberJoined$(): Observable<MemberJoinedPayload>
```

Observable of member-joined events, emitted when a remote participant joins the call.

## **Examples**

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