# Edit Coverage Verified

> Perform Edit Coverage Verified through Brightree.

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

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

- Handler: `brightree_edit_coverage_verified`

- Connection type: `brightree`

## Inputs

- `sales_order_key` — Sales Order Key (expression, required)
  Required literal value or workflow expression.
- `checked` — Checked (boolean)
  Optional true-or-false value.
  Default: `true`
- `expected_current_wip_state` — Expected Current Wip State (expression)
  Optional literal value or workflow expression.
- `expected_current_classification` — Expected Current Classification (expression)
  Optional literal value or workflow expression.
- `dry_run` — Dry Run (boolean)
  Optional true-or-false value.
  Default: `false`

## Outputs

- `success` — Success
- `dry_run` — Dry Run
- `checked` — Checked
- `was_already_checked` — Was Already Checked
- `sales_order_key` — Sales Order Key
- `message` — Message
- `error` — Error

Output schema completeness: `best_effort_declared`

## Safety

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

## Schemas

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

### Input schema

```json
{
  "type": "object",
  "required": [
    "sales_order_key"
  ],
  "properties": {
    "checked": {
      "type": "boolean",
      "default": true,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "dry_run": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "sales_order_key": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "expected_current_wip_state": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "expected_current_classification": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "checked": {},
    "dry_run": {},
    "message": {},
    "success": {},
    "sales_order_key": {},
    "was_already_checked": {}
  },
  "additionalProperties": true
}
```
