# Log CMN

> Perform Log CMN through Brightree.

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

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

- Handler: `brightree_log_cmn`

- 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
- `logged` — Logged
- `noop` — Noop
- `cmn_key` — Cmn Key
- `cmn_form_key` — Cmn Form Key
- `previous_status` — Previous Status
- `actual_status` — Actual Status
- `message` — Message
- `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": [
    "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": {
    "noop": {},
    "error": {},
    "logged": {},
    "cmn_key": {},
    "message": {},
    "success": {},
    "cmn_form_key": {},
    "actual_status": {},
    "previous_status": {}
  },
  "additionalProperties": true
}
```
