> ## Documentation Index
> Fetch the complete documentation index at: https://docs.flowsbuilt.com/llms.txt
> Use this file to discover all available pages before exploring further.

# listWatches()

> List all active webhook watches for your account.

## Signature

```typescript theme={null}
churn.listWatches(options?: CallOptions): Promise<WatchedUser[]>
```

## Return value

```typescript theme={null}
interface WatchedUser {
  userId: string
  threshold: number
  webhook: string
  cooldown: string
}
```

## Example

```typescript theme={null}
const watches = await churn.listWatches()

for (const w of watches) {
  console.log(`${w.userId} → alert at ${w.threshold} score, cooldown ${w.cooldown}`)
}
```

## Use cases

* Audit which users are being monitored
* Sync watches with your CRM or CS tool
* Clean up stale watches for cancelled users
