# Create Order Review Task

> Perform Create Order Review Task through NikoHealth.

Source: [https://genhealth.ai/docs/workflows/integrations/nikohealth/nikohealth_create_order_review_task](https://genhealth.ai/docs/workflows/integrations/nikohealth/nikohealth_create_order_review_task)

Integration: [NikoHealth](https://genhealth.ai/docs/workflows/integrations/nikohealth.md)

- Handler: `nikohealth_create_order_review_task`

- Connection type: `nikohealth`

## Inputs

- `order_id` — Order Id (expression, required)
  Required literal value or workflow expression.
- `patient_id` — Patient Id (expression)
  Optional literal value or workflow expression.
- `patient_name` — Patient Name (expression)
  Optional literal value or workflow expression.
- `task_title` — Task Title (text)
  Optional text value.
- `assignee_id_dropdown` — Assignee Id Dropdown (niko_task_assignee)
  Optional selected identifier or value.
- `assignee_id` — Assignee Id (expression)
  Optional literal value or workflow expression.
- `priority` — Priority (select)
  Optional selected identifier or value.
  Default: `"Normal"`
  Options: Normal ("Normal"), Low ("Low"), High ("High")
- `note` — Note (expression)
  Optional literal value or workflow expression.
- `due_date` — Due Date (expression)
  Optional literal value or workflow expression.

## Outputs

- `success` — Success
- `task_id` — Task Id
- `order_id` — Order Id
- `error` — Error

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

```json
{
  "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

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "success": {},
    "task_id": {},
    "order_id": {}
  },
  "additionalProperties": true
}
```
