# List Faxes (Tellescope)

> Perform List Faxes (Tellescope) through Tellescope.

Source: [https://genhealth.ai/docs/workflows/integrations/tellescope/list_tellescope_faxes](https://genhealth.ai/docs/workflows/integrations/tellescope/list_tellescope_faxes)

Integration: [Tellescope](https://genhealth.ai/docs/workflows/integrations/tellescope.md)

- Handler: `list_tellescope_faxes`

- Connection type: `tellescope`

## Inputs

- `limit` — Limit (number)
  Optional numeric value.
  Default: `"100"`
- `lookback_hours` — Lookback Hours (number)
  Optional numeric value.
  Default: `"48"`
- `exclude_tagged` — Exclude Tagged (boolean)
  Optional true-or-false value.
  Default: `"false"`

## Outputs

- `faxes` — Faxes
- `count` — Count
- `error` — Error

Output schema completeness: `best_effort_declared`

## Safety

- External effect: `write`
- Confirmation recommended: no
- Retry safe: no
- Dry run supported: no

## Schemas

These schemas are first-pass authoring guidance. Runtime validation remains authoritative.

### Input schema

```json
{
  "type": "object",
  "properties": {
    "limit": {
      "type": "number",
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "exclude_tagged": {
      "type": "boolean",
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "lookback_hours": {
      "type": "number",
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "count": {},
    "error": {},
    "faxes": {}
  },
  "additionalProperties": true
}
```
