Skip to documentation
eClinicalWorks integration

Mark Eligibility Verified

Perform Mark Eligibility Verified through eClinicalWorks.

View as Markdown
ecw_mark_eligibility_verified
writeeclinicalworks

Inputs

  • patient_id
    textrequired
    Patient Id

    Required text value.

  • encounter_id
    text
    Encounter Id

    Optional text value.

  • encounter_ids
    json
    Encounter Ids

    Optional JSON value.

  • portal
    textrequired
    Portal

    Required text value.

  • verified_on
    daterequired
    Verified On

    Required date in YYYY-MM-DD format.

Outputs

  • successSuccess
  • verified_countVerified 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",
    "portal",
    "verified_on"
  ],
  "properties": {
    "portal": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "patient_id": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "verified_on": {
      "type": "string",
      "format": "date",
      "description": "Required date in YYYY-MM-DD format.",
      "x-workflow-field-type": "date"
    },
    "encounter_id": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "encounter_ids": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "error": {},
    "success": {},
    "verified_count": {}
  },
  "additionalProperties": true
}
View all eClinicalWorks actions