Skip to documentation
eClinicalWorks integration

Upload Authorization PDF

Perform Upload Authorization PDF through eClinicalWorks.

View as Markdown
ecw_upload_authorization_pdf
writeeclinicalworks

Inputs

  • patient_id
    textrequired
    Patient Id

    Required text value.

  • auth_pdf_document_id
    text
    Auth Pdf Document Id

    Optional text value.

  • auth_pdf
    text
    Auth Pdf

    Optional text value.

  • date_of_service
    daterequired
    Date Of Service

    Required date in YYYY-MM-DD format.

  • cpt_code
    textrequired
    Cpt Code

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