# Send Fax (Faxage)

> Perform Send Fax (Faxage) through Faxage.

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

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

- Handler: `send_fax`

- Connection type: `faxage`

## Inputs

- `fax_number` — Fax Number (text)
  Optional text value.
- `document_url` — Document Url (expression)
  Optional literal value or workflow expression.
- `document_id` — Document Id (expression)
  Optional literal value or workflow expression.
- `confirm_delivery` — Confirm Delivery (boolean)
  Optional true-or-false value.
  Default: `false`
- `confirm_timeout_seconds` — Confirm Timeout Seconds (number)
  Optional numeric value.
  Default: `180`
- `confirm_poll_seconds` — Confirm Poll Seconds (number)
  Optional numeric value.
  Default: `20`

## Outputs

- `job_id` — Job Id
- `fax_number` — Fax Number
- `status` — Status
- `status_detail` — Status Detail
- `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": {
    "fax_number": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "document_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "document_url": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "confirm_delivery": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "confirm_poll_seconds": {
      "type": "number",
      "default": 20,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "confirm_timeout_seconds": {
      "type": "number",
      "default": 180,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "job_id": {},
    "status": {},
    "fax_number": {},
    "status_detail": {}
  },
  "additionalProperties": true
}
```
