# Get New Faxes (Weave)

> Perform Get New Faxes (Weave) through Weave.

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

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

- Handler: `get_new_weave_faxes`

- Connection type: `weave`

## Inputs

- `start` — Start (date)
  Optional date in YYYY-MM-DD format.
  Default: `"08-17-2026"`
- `end` — End (date)
  Optional date in YYYY-MM-DD format.
  Default: `"08-24-2026"`
- `sender` — Sender (text)
  Optional text value.
- `recipient` — Recipient (text)
  Optional text value.

## Outputs

No named outputs are declared for this action.

Output schema completeness: `unknown`

## 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": {
    "end": {
      "type": "string",
      "format": "date",
      "default": "08-24-2026",
      "description": "Optional date in YYYY-MM-DD format.",
      "x-workflow-field-type": "date"
    },
    "start": {
      "type": "string",
      "format": "date",
      "default": "08-17-2026",
      "description": "Optional date in YYYY-MM-DD format.",
      "x-workflow-field-type": "date"
    },
    "sender": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "recipient": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    }
  },
  "additionalProperties": false
}
```

### Output schema

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