Upload Eligibility PDF
Perform Upload Eligibility PDF through eClinicalWorks.
ecw_upload_eligibility_pdfwriteeclinicalworks
Inputs
- Patient Id
patient_idtextrequiredRequired text value.
- Eligibility Pdf Document Id
eligibility_pdf_document_idtextOptional text value.
- Eligibility Pdf
eligibility_pdftextOptional text value.
- Date Of Service
date_of_servicedaterequiredRequired date in YYYY-MM-DD format.
- Folder Name
folder_nametextOptional text value.
Outputs
successSuccesserrorError
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",
"date_of_service"
],
"properties": {
"patient_id": {
"type": "string",
"description": "Required text value.",
"x-workflow-field-type": "text"
},
"folder_name": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"date_of_service": {
"type": "string",
"format": "date",
"description": "Required date in YYYY-MM-DD format.",
"x-workflow-field-type": "date"
},
"eligibility_pdf": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"eligibility_pdf_document_id": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"success": {}
},
"additionalProperties": true
}