# List Faxes (Weave)

> Perform List Faxes (Weave) through Weave.

Source: [https://genhealth.ai/docs/workflows/integrations/weave/list_weave_faxes](https://genhealth.ai/docs/workflows/integrations/weave/list_weave_faxes)

Integration: [Weave](https://genhealth.ai/docs/workflows/integrations/weave.md)

- Handler: `list_weave_faxes`

- Connection type: `weave`

## Inputs

- `direction` — Direction (select)
  Optional selected identifier or value.
  Options: All (""), Inbound ("INBOUND"), Outbound ("OUTBOUND")
- `limit` — Limit (number)
  Optional numeric value.
  Default: `"25"`
- `sender` — Sender (text)
  Optional text value.
- `recipient` — Recipient (text)
  Optional text value.

## 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"
    },
    "sender": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "direction": {
      "enum": [
        "",
        "INBOUND",
        "OUTBOUND"
      ],
      "type": "string",
      "description": "Optional selected identifier or value.",
      "x-workflow-field-type": "select"
    },
    "recipient": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    }
  },
  "additionalProperties": false
}
```

### Output schema

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