# Build Prior Authorization Packet

> Perform Build Prior Authorization Packet through Parachute Health.

Source: [https://genhealth.ai/docs/workflows/integrations/parachute-health/parachute_build_prior_auth_packet](https://genhealth.ai/docs/workflows/integrations/parachute-health/parachute_build_prior_auth_packet)

Integration: [Parachute Health](https://genhealth.ai/docs/workflows/integrations/parachute-health.md)

- Handler: `parachute_build_prior_auth_packet`

- Connection type: `parachute`

## Inputs

- `order_id` — Order Id (expression, required)
  Required literal value or workflow expression.
- `supplier_id` — Supplier Id (expression)
  Optional literal value or workflow expression.
- `order_documents` — Order Documents (expression)
  Optional literal value or workflow expression.
- `include_named_documents` — Include Named Documents (boolean)
  Optional true-or-false value.
  Default: `true`
- `document_names` — Document Names (text)
  Optional text value.

## Outputs

- `success` — Success
- `status` — Status
- `document_id` — Document Id
- `source_document_count` — Source Document Count
- `page_count` — Page Count
- `size_bytes` — Size Bytes
- `was_existing` — Was Existing
- `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"
  ],
  "properties": {
    "order_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "supplier_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "document_names": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "order_documents": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "include_named_documents": {
      "type": "boolean",
      "default": true,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "status": {},
    "success": {},
    "page_count": {},
    "size_bytes": {},
    "document_id": {},
    "was_existing": {},
    "source_document_count": {}
  },
  "additionalProperties": true
}
```
