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

# recoveryState$

> Observable of the recovery pipeline state machine.

```ts
get recoveryState$(): Observable<RecoveryState>
```

Observable of the recovery pipeline state machine.

## **Examples**

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