Skip to documentation
eClinicalWorks integration

Upload Eligibility PDF

Perform Upload Eligibility PDF through eClinicalWorks.

View as Markdown
ecw_upload_eligibility_pdf
writeeclinicalworks

Inputs

  • patient_id
    textrequired
    Patient Id

    Required text value.

  • eligibility_pdf_document_id
    text
    Eligibility Pdf Document Id

    Optional text value.

  • eligibility_pdf
    text
    Eligibility Pdf

    Optional text value.

  • date_of_service
    daterequired
    Date Of Service

    Required date in YYYY-MM-DD format.

  • folder_name
    text
    Folder Name

    Optional text value.

Outputs

  • successSuccess
  • 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",
    "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
}
View all eClinicalWorks actions