# Send Follow-Up Fax

> Perform Send Follow-Up Fax through MyForms.

Source: [https://genhealth.ai/docs/workflows/integrations/my-forms/intake_send_subsequent_fax](https://genhealth.ai/docs/workflows/integrations/my-forms/intake_send_subsequent_fax)

Integration: [MyForms](https://genhealth.ai/docs/workflows/integrations/my-forms.md)

- Handler: `intake_send_subsequent_fax`

## Inputs

- `context_payload` — Context Payload (json)
  Optional JSON value.
- `fax_payload` — Fax Payload (json)
  Optional JSON 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": {
    "fax_payload": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "context_payload": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    }
  },
  "additionalProperties": false
}
```

### Output schema

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