# Set Fax Work Status

> Perform Set Fax Work Status through Brightree.

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

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

- Handler: `brightree_set_fax_work_status`

- Connection type: `brightree`

## Inputs

- `fax_key` — Fax Key (expression)
  Optional literal value or workflow expression.
- `target_status` — Target Status (select)
  Optional selected identifier or value.
  Options: None ("None"), Completed ("Completed")
- `received_date_from` — Received Date From (date)
  Optional date in YYYY-MM-DD format.
- `received_date_to` — Received Date To (date)
  Optional date in YYYY-MM-DD format.
- `work_status_filter` — Work Status Filter (text)
  Optional text value.
- `show_unassigned` — Show Unassigned (boolean)
  Optional true-or-false value.
- `branch_offices` — Branch Offices (multi_select, dynamic options)
  Optional list of selected values. Retrieve allowed values from the dynamic options endpoint.

## Outputs

- `success` — Success
- `fax_key` — Fax Key
- `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_key": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "target_status": {
      "enum": [
        "None",
        "Completed"
      ],
      "type": "string",
      "description": "Optional selected identifier or value.",
      "x-workflow-field-type": "select"
    },
    "branch_offices": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Optional list of selected values. Retrieve allowed values from the dynamic options endpoint.",
      "x-dynamic-options": true,
      "x-workflow-field-type": "multi_select"
    },
    "show_unassigned": {
      "type": "boolean",
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "received_date_to": {
      "type": "string",
      "format": "date",
      "description": "Optional date in YYYY-MM-DD format.",
      "x-workflow-field-type": "date"
    },
    "received_date_from": {
      "type": "string",
      "format": "date",
      "description": "Optional date in YYYY-MM-DD format.",
      "x-workflow-field-type": "date"
    },
    "work_status_filter": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    }
  },
  "additionalProperties": false
}
```

### Output schema

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