# Download Fax (Tellescope)

> Perform Download Fax (Tellescope) through Tellescope.

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

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

- Handler: `download_tellescope_fax`

- Connection type: `tellescope`

## Inputs

- `file_id` — File Id (text)
  Optional text value.

## Outputs

- `success` — Success
- `doc_id` — Doc Id
- `file_id` — File Id
- `skipped` — Skipped
- `filename` — Filename
- `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": {
    "file_id": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "doc_id": {},
    "file_id": {},
    "skipped": {},
    "success": {},
    "filename": {}
  },
  "additionalProperties": true
}
```
