Skip to documentation
ExaPACS integration

Save Verification Sheet

Perform Save Verification Sheet through ExaPACS.

View as Markdown
exapacs_save_verification_sheet
writeexapacs

Inputs

  • form_type
    select
    Form Type

    Optional selected identifier or value.

    Default: "primary"

    Options: Primary Verification ("primary"), Secondary Verification ("secondary"), Tertiary Verification ("tertiary")

  • order_id
    expressionrequired
    Order Id

    Required literal value or workflow expression.

  • patient_id
    expressionrequired
    Patient Id

    Required literal value or workflow expression.

  • cpt_codes
    expressionrequired
    Cpt Codes

    Required literal value or workflow expression.

  • sections
    expressionrequired
    Sections

    Required literal value or workflow expression.

  • call_plan
    expression
    Call Plan

    Optional literal value or workflow expression.

  • call_plan_reason
    expression
    Call Plan Reason

    Optional literal value or workflow expression.

  • contract_rates
    expression
    Contract Rates

    Optional literal value or workflow expression.

Outputs

  • statusStatus
  • verification_sheet_doc_idVerification Sheet Doc Id
  • saved_atSaved At
  • form_typeForm Type
  • successSuccess
  • call_planCall Plan
  • messageMessage
  • 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": [
    "order_id",
    "patient_id",
    "cpt_codes",
    "sections"
  ],
  "properties": {
    "order_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "sections": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "call_plan": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "cpt_codes": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "form_type": {
      "enum": [
        "primary",
        "secondary",
        "tertiary"
      ],
      "type": "string",
      "default": "primary",
      "description": "Optional selected identifier or value.",
      "x-workflow-field-type": "select"
    },
    "patient_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "contract_rates": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "call_plan_reason": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "error": {},
    "status": {},
    "message": {},
    "success": {},
    "saved_at": {},
    "call_plan": {},
    "form_type": {},
    "verification_sheet_doc_id": {}
  },
  "additionalProperties": true
}
View all ExaPACS actions