# Prepare Verification Sections

> Perform Prepare Verification Sections through ExaPACS.

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

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

- Handler: `exapacs_prepare_verification_sections`

- Connection type: `exapacs`

## Inputs

- `policy_results` — Policy Results (expression, required)
  Required literal value or workflow expression.
- `match_results` — Match Results (expression, required)
  Required literal value or workflow expression.
- `service_type` — Service Type (expression)
  Optional literal value or workflow expression.

## Outputs

- `form_type` — Form Type
- `cpt_codes` — Cpt Codes
- `sections` — Sections
- `call_plan` — Call Plan
- `call_plan_reason` — Call Plan Reason
- `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": [
    "policy_results",
    "match_results"
  ],
  "properties": {
    "service_type": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "match_results": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "policy_results": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "sections": {},
    "call_plan": {},
    "cpt_codes": {},
    "form_type": {},
    "call_plan_reason": {}
  },
  "additionalProperties": true
}
```
