Upload Authorization PDF
Perform Upload Authorization PDF through eClinicalWorks.
ecw_upload_authorization_pdfwriteeclinicalworks
Inputs
- Patient Id
patient_idtextrequiredRequired text value.
- Auth Pdf Document Id
auth_pdf_document_idtextOptional text value.
- Auth Pdf
auth_pdftextOptional text value.
- Date Of Service
date_of_servicedaterequiredRequired date in YYYY-MM-DD format.
- Cpt Code
cpt_codetextrequiredRequired 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",
"cpt_code"
],
"properties": {
"auth_pdf": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"cpt_code": {
"type": "string",
"description": "Required text value.",
"x-workflow-field-type": "text"
},
"patient_id": {
"type": "string",
"description": "Required 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"
},
"auth_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
}