# Resolve Client Sheet Costs

> Perform Resolve Client Sheet Costs through Brightree.

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

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

- Handler: `brightree_resolve_client_sheet_costs`

- Connection type: `brightree`

## Inputs

- `max_rows` — Max Rows (number, required)
  Required numeric value.
  Default: `2000`

## Outputs

- `success` — Success
- `catalog_entries` — Catalog Entries
- `rows_scanned` — Rows Scanned
- `cost_written` — Cost Written
- `matched_item` — Matched Item
- `matched_hcpcs` — Matched Hcpcs
- `no_catalog_match` — No Catalog Match
- `quantity_unparsed` — Quantity Unparsed
- `uncosted_remaining` — Uncosted Remaining
- `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": [
    "max_rows"
  ],
  "properties": {
    "max_rows": {
      "type": "number",
      "default": 2000,
      "description": "Required numeric value.",
      "x-workflow-field-type": "number"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "success": {},
    "cost_written": {},
    "matched_item": {},
    "rows_scanned": {},
    "matched_hcpcs": {},
    "catalog_entries": {},
    "no_catalog_match": {},
    "quantity_unparsed": {},
    "uncosted_remaining": {}
  },
  "additionalProperties": true
}
```
