# Read Latest CMN Fax Activity

> Perform Read Latest CMN Fax Activity through Brightree.

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

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

- Handler: `brightree_read_cmn_fax_status`

- Connection type: `brightree`

## Inputs

- `cmn_key` — Cmn Key (expression, required)
  Required literal value or workflow expression.
- `cmn_form_key` — Cmn Form Key (expression, required)
  Required literal value or workflow expression.

## Outputs

- `success` — Success
- `cmn_key` — Cmn Key
- `cmn_form_key` — Cmn Form Key
- `outcome` — Outcome
- `fax_status` — Fax Status
- `fax_status_reason` — Fax Status Reason
- `fax_activity_date_time` — Fax Activity Date Time
- `fax_activity_count` — Fax Activity Count
- `observed_complete` — Observed Complete
- `observed_processing` — Observed Processing
- `observed_failed` — Observed Failed
- `correlated_to_attempt` — Correlated To Attempt
- `manual_review_required` — Manual Review Required
- `error` — Error

Output schema completeness: `best_effort_declared`

## Safety

- External effect: `read`
- Confirmation recommended: no
- Retry safe: yes
- Dry run supported: no

## Schemas

These schemas are first-pass authoring guidance. Runtime validation remains authoritative.

### Input schema

```json
{
  "type": "object",
  "required": [
    "cmn_key",
    "cmn_form_key"
  ],
  "properties": {
    "cmn_key": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "cmn_form_key": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "cmn_key": {},
    "outcome": {},
    "success": {},
    "fax_status": {},
    "cmn_form_key": {},
    "observed_failed": {},
    "fax_status_reason": {},
    "observed_complete": {},
    "fax_activity_count": {},
    "observed_processing": {},
    "correlated_to_attempt": {},
    "fax_activity_date_time": {},
    "manual_review_required": {}
  },
  "additionalProperties": true
}
```
