# ECW Resolve Patient

> Perform ECW Resolve Patient through eClinicalWorks.

Source: [https://genhealth.ai/docs/workflows/integrations/eclinicalworks/ecw_resolve_patient](https://genhealth.ai/docs/workflows/integrations/eclinicalworks/ecw_resolve_patient)

Integration: [eClinicalWorks](https://genhealth.ai/docs/workflows/integrations/eclinicalworks.md)

- Handler: `ecw_resolve_patient`

- Connection type: `eclinicalworks`

## Inputs

- `patient_id` — Patient Id (text)
  Optional text value.
- `acc_no` — Acc No (text)
  Optional text value.
- `first_name` — First Name (text)
  Optional text value.
- `last_name` — Last Name (text)
  Optional text value.
- `dob_mmddyyyy` — Dob Mmddyyyy (text)
  Optional text value.
- `max_count` — Max Count (number)
  Optional numeric value.
  Default: `15`

## Outputs

- `success` — Success
- `result` — Result
- `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",
  "properties": {
    "acc_no": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "last_name": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "max_count": {
      "type": "number",
      "default": 15,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "first_name": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "patient_id": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "dob_mmddyyyy": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    }
  },
  "additionalProperties": false
}
```

### Output schema

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