# Prepare Subsequent Fax

> Perform Prepare Subsequent Fax through GenHealth.

Source: [https://genhealth.ai/docs/workflows/integrations/gen-health/intake_prepare_subsequent_fax](https://genhealth.ai/docs/workflows/integrations/gen-health/intake_prepare_subsequent_fax)

Integration: [GenHealth](https://genhealth.ai/docs/workflows/integrations/gen-health.md)

- Handler: `intake_prepare_subsequent_fax`

## Inputs

- `candidate` — Candidate (json)
  Optional JSON value.
- `selection_payload` — Selection Payload (json)
  Optional JSON value.
- `account_key` — Account Key (text)
  Optional text value.
- `dry_run` — Dry Run (boolean)
  Optional true-or-false value.
  Default: `false`

## 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: yes

## Schemas

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

### Input schema

```json
{
  "type": "object",
  "properties": {
    "dry_run": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "candidate": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "account_key": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "selection_payload": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    }
  },
  "additionalProperties": false
}
```

### Output schema

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