# Reconcile Fax Insurance

> Perform Reconcile Fax Insurance through Brightree.

Source: [https://genhealth.ai/docs/workflows/integrations/brightree/brightree_reconcile_fax_insurance](https://genhealth.ai/docs/workflows/integrations/brightree/brightree_reconcile_fax_insurance)

Integration: [Brightree](https://genhealth.ai/docs/workflows/integrations/brightree.md)

- Handler: `brightree_reconcile_fax_insurance`

- Connection type: `brightree`

## Inputs

- `document_id` — Document Id (expression, required)
  Required literal value or workflow expression.

## Outputs

- `success` — Success
- `document_id` — Document Id
- `primary_outcome` — Primary Outcome
- `had_demographics` — Had Demographics
- `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": [
    "document_id"
  ],
  "properties": {
    "document_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "success": {},
    "document_id": {},
    "primary_outcome": {},
    "had_demographics": {}
  },
  "additionalProperties": true
}
```
