Mark Eligibility Verified
Perform Mark Eligibility Verified through eClinicalWorks.
ecw_mark_eligibility_verifiedwriteeclinicalworks
Inputs
- Patient Id
patient_idtextrequiredRequired text value.
- Encounter Id
encounter_idtextOptional text value.
- Encounter Ids
encounter_idsjsonOptional JSON value.
- Portal
portaltextrequiredRequired text value.
- Verified On
verified_ondaterequiredRequired date in YYYY-MM-DD format.
Outputs
successSuccessverified_countVerified 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",
"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
}