Skip to documentation
eClinicalWorks integration

Post Billing Alert

Perform Post Billing Alert through eClinicalWorks.

View as Markdown
ecw_post_billing_alert
writeeclinicalworks

Inputs

  • patient_id
    textrequired
    Patient Id

    Required text value.

  • alert_text
    textarearequired
    Alert Text

    Required text value.

  • visit_types
    json
    Visit Types

    Optional JSON value.

  • visit_type
    text
    Visit Type

    Optional text value.

  • dedup_window
    select
    Dedup Window

    Optional selected identifier or value.

    Default: "none"

    Options: None (always post) ("none"), Skip if already present (any time) ("per_day")

Outputs

  • successSuccess
  • skippedSkipped
  • posted_countPosted Count
  • total_countTotal Count
  • errorError

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
}
View all eClinicalWorks actions