ECW Fetch Rx Receipt
Perform ECW Fetch Rx Receipt through eClinicalWorks.
ecw_fetch_rx_receiptwriteeclinicalworks
Inputs
- Rx Id
rx_idtextrequiredRequired text value.
- Rx Type
rx_typetextrequiredRequired text value.
Outputs
successSuccessresultResulterrorError
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
{
"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
{
"type": "object",
"properties": {
"error": {},
"result": {},
"success": {}
},
"additionalProperties": true
}