Skip to documentation
NikoHealth integration

Update Order State

Perform Update Order State through NikoHealth.

View as Markdown
nikohealth_update_order_state
writenikohealth

Inputs

  • order_id
    textrequired
    Order Id

    Required text value.

  • status
    text
    Status

    Optional text value.

  • tags
    text
    Tags

    Optional text value.

Outputs

  • successSuccess
  • errorError

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"
  ],
  "properties": {
    "tags": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "status": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "order_id": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "error": {},
    "success": {}
  },
  "additionalProperties": true
}
View all NikoHealth actions