# Confirm Fax Delivery (Faxage)

> Perform Confirm Fax Delivery (Faxage) through Faxage.

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

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

- Handler: `confirm_fax_delivery`

- Connection type: `faxage`

## Inputs

- `job_id` — Job Id (expression, required)
  Required literal value or workflow expression.
- `timeout_seconds` — Timeout Seconds (number)
  Optional numeric value.
  Default: `180`
- `poll_seconds` — Poll Seconds (number)
  Optional numeric value.
  Default: `20`

## Outputs

- `success` — Success
- `job_id` — Job Id
- `status` — Status
- `status_detail` — Status Detail
- `retryable` — Retryable
- `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",
  "required": [
    "job_id"
  ],
  "properties": {
    "job_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "poll_seconds": {
      "type": "number",
      "default": 20,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "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": {},
    "success": {},
    "retryable": {},
    "status_detail": {}
  },
  "additionalProperties": true
}
```
