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

# callUpdated$

> Observable of call-updated events.

```ts
get callUpdated$(): Observable<CallUpdatedPayload>
```

Observable of call-updated events.

## **Examples**

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