# Download & Mark Handled (Faxage)

> Perform Download & Mark Handled (Faxage) through Faxage.

Source: [https://genhealth.ai/docs/workflows/integrations/faxage/download_faxage_faxes](https://genhealth.ai/docs/workflows/integrations/faxage/download_faxage_faxes)

Integration: [Faxage](https://genhealth.ai/docs/workflows/integrations/faxage.md)

- Handler: `download_faxage_faxes`

- Connection type: `faxage`

## Inputs

- `limit` — Limit (number)
  Optional numeric value.

## Outputs

- `created` — Created
- `skipped` — Skipped
- `count_created` — Count Created
- `count_skipped` — Count Skipped
- `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"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "created": {},
    "skipped": {},
    "count_created": {},
    "count_skipped": {}
  },
  "additionalProperties": true
}
```
