Skip to documentation
NikoHealth integration

List Order Documents

Perform List Order Documents through NikoHealth.

View as Markdown
nikohealth_list_order_documents
readnikohealth

Inputs

  • order_id
    expressionrequired
    Order Id

    Required literal value or workflow expression.

  • document_types
    multi_selectdynamic options
    Document Types

    Optional list of selected values. Retrieve allowed values from the dynamic options endpoint.

  • skip_if_empty
    boolean
    Skip If Empty

    Optional true-or-false value.

    Default: false

Outputs

  • successSuccess
  • skippedSkipped
  • foundFound
  • documentsDocuments
  • countCount
  • document_typesDocument Types
  • errorError

Output schema completeness: best_effort_declared

Safety

External effect
read
Confirmation recommended
No
Retry safe
Yes
Dry run supported
No

Schemas

These schemas are first-pass authoring guidance. Runtime validation remains authoritative.

Input schema
{
  "type": "object",
  "required": [
    "order_id"
  ],
  "properties": {
    "order_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "skip_if_empty": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "document_types": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Optional list of selected values. Retrieve allowed values from the dynamic options endpoint.",
      "x-dynamic-options": true,
      "x-workflow-field-type": "multi_select"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "count": {},
    "error": {},
    "found": {},
    "skipped": {},
    "success": {},
    "documents": {},
    "document_types": {}
  },
  "additionalProperties": true
}
View all NikoHealth actions