# Apply Fax Demographics

> Perform Apply Fax Demographics through Brightree.

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

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

- Handler: `brightree_apply_fax_demographics`

- Connection type: `brightree`

## Inputs

- `document_id` — Document Id (expression, required)
  Required literal value or workflow expression.
- `include_insurance` — Include Insurance (boolean)
  Optional true-or-false value.
  Default: `true`

## Outputs

- `success` — Success
- `document_id` — Document Id
- `address_updated` — Address Updated
- `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"
    },
    "include_insurance": {
      "type": "boolean",
      "default": true,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    }
  },
  "additionalProperties": false
}
```

### Output schema

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