Post Workflow Failure Alert
Perform Post Workflow Failure Alert through eClinicalWorks.
ecw_post_workflow_failure_alertwriteeclinicalworks
Inputs
- Patient Id
patient_idtextrequiredRequired text value.
- Dos
dosdaterequiredRequired date in YYYY-MM-DD format.
- Category
categoryselectrequiredRequired selected identifier or value.
Options: Eligibility Inactive ("eligibility_inactive"), Patient Not Found ("patient_not_found"), Auth Pending ("auth_pending"), Auth Denied ("auth_denied"), No Prior Encounter Testing Visit ("no_prior_encounter_testing_visit")
- Visit Type
visit_typetextOptional text value.
Outputs
successSuccesshaltedHalted
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",
"dos",
"category"
],
"properties": {
"dos": {
"type": "string",
"format": "date",
"description": "Required date in YYYY-MM-DD format.",
"x-workflow-field-type": "date"
},
"category": {
"enum": [
"eligibility_inactive",
"patient_not_found",
"auth_pending",
"auth_denied",
"no_prior_encounter_testing_visit"
],
"type": "string",
"description": "Required selected identifier or value.",
"x-workflow-field-type": "select"
},
"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"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"halted": {},
"success": {}
},
"additionalProperties": true
}