Skip to documentation
NikoHealth integration

Get Order

Perform Get Order through NikoHealth.

View as Markdown
nikohealth_get_order
readnikohealth

Inputs

  • order_id
    textrequired
    Order Id

    Required text value.

  • skip_if_empty
    boolean
    Skip If Empty

    Optional true-or-false value.

    Default: false

Outputs

  • successSuccess
  • skippedSkipped
  • orderOrder
  • reasonReason
  • 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": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "skip_if_empty": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "error": {},
    "order": {},
    "reason": {},
    "skipped": {},
    "success": {}
  },
  "additionalProperties": true
}
View all NikoHealth actions