Skip to documentation
Parachute Health integration

Download and Upload Documents to Niko

Perform Download and Upload Documents to Niko through Parachute Health.

View as Markdown
parachute_download_upload_documents_to_niko
writeparachute

Inputs

  • order_id
    expressionrequired
    Order Id

    Required literal value or workflow expression.

  • supplier_id
    expression
    Supplier Id

    Optional literal value or workflow expression.

  • patient_id
    expressionrequired
    Patient Id

    Required literal value or workflow expression.

  • downloadable_documents
    expression
    Downloadable Documents

    Optional literal value or workflow expression.

  • document_keys
    text
    Document Keys

    Optional text value.

    Default: "all"

  • document_type
    selectdynamic options
    Document Type

    Optional selected identifier or value. Retrieve allowed values from the dynamic options endpoint.

    Default: "Parachute Documents"

Outputs

  • successSuccess
  • statusStatus
  • uploaded_countUploaded Count
  • skipped_countSkipped Count
  • failed_countFailed Count
  • document_idsDocument Ids
  • patient_document_idsPatient Document Ids
  • documentsDocuments
  • errorError
  • error_messageError 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
{
  "type": "object",
  "required": [
    "order_id",
    "patient_id"
  ],
  "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_keys": {
      "type": "string",
      "default": "all",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "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"
    },
    "downloadable_documents": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "error": {},
    "status": {},
    "success": {},
    "documents": {},
    "document_ids": {},
    "failed_count": {},
    "error_message": {},
    "skipped_count": {},
    "uploaded_count": {},
    "patient_document_ids": {}
  },
  "additionalProperties": true
}
View all Parachute Health actions