# Save Verification Sheet

> Perform Save Verification Sheet through ExaPACS.

Source: [https://genhealth.ai/docs/workflows/integrations/exa-pacs/exapacs_save_verification_sheet](https://genhealth.ai/docs/workflows/integrations/exa-pacs/exapacs_save_verification_sheet)

Integration: [ExaPACS](https://genhealth.ai/docs/workflows/integrations/exa-pacs.md)

- Handler: `exapacs_save_verification_sheet`

- Connection type: `exapacs`

## Inputs

- `form_type` — Form Type (select)
  Optional selected identifier or value.
  Default: `"primary"`
  Options: Primary Verification ("primary"), Secondary Verification ("secondary"), Tertiary Verification ("tertiary")
- `order_id` — Order Id (expression, required)
  Required literal value or workflow expression.
- `patient_id` — Patient Id (expression, required)
  Required literal value or workflow expression.
- `cpt_codes` — Cpt Codes (expression, required)
  Required literal value or workflow expression.
- `sections` — Sections (expression, required)
  Required literal value or workflow expression.
- `call_plan` — Call Plan (expression)
  Optional literal value or workflow expression.
- `call_plan_reason` — Call Plan Reason (expression)
  Optional literal value or workflow expression.
- `contract_rates` — Contract Rates (expression)
  Optional literal value or workflow expression.

## Outputs

- `status` — Status
- `verification_sheet_doc_id` — Verification Sheet Doc Id
- `saved_at` — Saved At
- `form_type` — Form Type
- `success` — Success
- `call_plan` — Call Plan
- `message` — Message
- `error` — Error

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

```json
{
  "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

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "status": {},
    "message": {},
    "success": {},
    "saved_at": {},
    "call_plan": {},
    "form_type": {},
    "verification_sheet_doc_id": {}
  },
  "additionalProperties": true
}
```
