# ECW Fetch Rx Receipt

> Perform ECW Fetch Rx Receipt through eClinicalWorks.

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

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

- Handler: `ecw_fetch_rx_receipt`

- Connection type: `eclinicalworks`

## Inputs

- `rx_id` — Rx Id (text, required)
  Required text value.
- `rx_type` — Rx Type (text, required)
  Required text value.

## Outputs

- `success` — Success
- `result` — Result
- `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": [
    "rx_id",
    "rx_type"
  ],
  "properties": {
    "rx_id": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "rx_type": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    }
  },
  "additionalProperties": false
}
```

### Output schema

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