Post Billing Alert
Perform Post Billing Alert through eClinicalWorks.
ecw_post_billing_alertwriteeclinicalworks
Inputs
- Patient Id
patient_idtextrequiredRequired text value.
- Alert Text
alert_texttextarearequiredRequired text value.
- Visit Types
visit_typesjsonOptional JSON value.
- Visit Type
visit_typetextOptional text value.
- Dedup Window
dedup_windowselectOptional selected identifier or value.
Default:
"none"Options: None (always post) ("none"), Skip if already present (any time) ("per_day")
Outputs
successSuccessskippedSkippedposted_countPosted Counttotal_countTotal CounterrorError
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": [
"patient_id",
"alert_text"
],
"properties": {
"alert_text": {
"type": "string",
"description": "Required text value.",
"x-workflow-field-type": "textarea"
},
"patient_id": {
"type": "string",
"description": "Required text value.",
"x-workflow-field-type": "text"
},
"visit_type": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"visit_types": {
"description": "Optional JSON value.",
"x-workflow-field-type": "json"
},
"dedup_window": {
"enum": [
"none",
"per_day"
],
"type": "string",
"default": "none",
"description": "Optional selected identifier or value.",
"x-workflow-field-type": "select"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"skipped": {},
"success": {},
"total_count": {},
"posted_count": {}
},
"additionalProperties": true
}