Skip to documentation
NikoHealth integration

Create Order Review Task

Perform Create Order Review Task through NikoHealth.

View as Markdown
nikohealth_create_order_review_task
writenikohealth

Inputs

  • order_id
    expressionrequired
    Order Id

    Required literal value or workflow expression.

  • patient_id
    expression
    Patient Id

    Optional literal value or workflow expression.

  • patient_name
    expression
    Patient Name

    Optional literal value or workflow expression.

  • task_title
    text
    Task Title

    Optional text value.

  • assignee_id_dropdown
    niko_task_assignee
    Assignee Id Dropdown

    Optional selected identifier or value.

  • assignee_id
    expression
    Assignee Id

    Optional literal value or workflow expression.

  • priority
    select
    Priority

    Optional selected identifier or value.

    Default: "Normal"

    Options: Normal ("Normal"), Low ("Low"), High ("High")

  • note
    expression
    Note

    Optional literal value or workflow expression.

  • due_date
    expression
    Due Date

    Optional literal value or workflow expression.

Outputs

  • successSuccess
  • task_idTask Id
  • order_idOrder Id
  • 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": {
    "note": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "due_date": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "order_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "priority": {
      "enum": [
        "Normal",
        "Low",
        "High"
      ],
      "type": "string",
      "default": "Normal",
      "description": "Optional selected identifier or value.",
      "x-workflow-field-type": "select"
    },
    "patient_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "task_title": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "assignee_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "patient_name": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "assignee_id_dropdown": {
      "type": "string",
      "description": "Optional selected identifier or value.",
      "x-workflow-field-type": "niko_task_assignee"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "error": {},
    "success": {},
    "task_id": {},
    "order_id": {}
  },
  "additionalProperties": true
}
View all NikoHealth actions