# Upload Supplemental Parachute Documents to Niko

> Perform Upload Supplemental Parachute Documents to Niko through Parachute Health.

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

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

- Handler: `parachute_upload_supplemental_documents_to_niko`

- 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.
- `patient_id` — Patient Id (expression, required)
  Required literal value or workflow expression.
- `order_documents` — Order Documents (expression, required)
  Required literal value or workflow expression.
- `document_type` — Document Type (select, dynamic options)
  Optional selected identifier or value. Retrieve allowed values from the dynamic options endpoint.
  Default: `"Parachute Documents"`
- `include_named_documents` — Include Named Documents (boolean)
  Optional true-or-false value.
  Default: `true`
- `document_names` — Document Names (text)
  Optional text value.
- `skip_unnamed_order_summaries` — Skip Unnamed Order Summaries (boolean)
  Optional true-or-false value.
  Default: `false`
- `route_non_summary_to_physician_notes` — Route Non Summary To Physician Notes (boolean)
  Optional true-or-false value.
  Default: `false`

## Outputs

- `success` — Success
- `status` — Status
- `uploaded_count` — Uploaded Count
- `skipped_count` — Skipped Count
- `failed_count` — Failed Count
- `document_ids` — Document Ids
- `patient_document_ids` — Patient Document Ids
- `documents` — Documents
- `error` — Error
- `error_message` — Error Message

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",
    "order_documents"
  ],
  "properties": {
    "order_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "patient_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_type": {
      "type": "string",
      "default": "Parachute Documents",
      "description": "Optional selected identifier or value. Retrieve allowed values from the dynamic options endpoint.",
      "x-dynamic-options": true,
      "x-workflow-field-type": "select"
    },
    "document_names": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "order_documents": {
      "description": "Required 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"
    },
    "skip_unnamed_order_summaries": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "route_non_summary_to_physician_notes": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "status": {},
    "success": {},
    "documents": {},
    "document_ids": {},
    "failed_count": {},
    "error_message": {},
    "skipped_count": {},
    "uploaded_count": {},
    "patient_document_ids": {}
  },
  "additionalProperties": true
}
```
