# Create Intake Review Task

> Perform Create Intake Review Task through NikoHealth.

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

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

- Handler: `nikohealth_create_intake_task`

- Connection type: `nikohealth`

## Inputs

- `document_id` — Document Id (expression, required)
  Required literal value or workflow expression.
- `niko_org` — Niko Org (text)
  Optional text value.
- `patient_id` — Patient Id (expression)
  Optional literal value or workflow expression.
- `is_new_patient` — Is New Patient (expression)
  Optional literal value or workflow expression.
- `task_title` — Task Title (expression)
  Optional literal value or workflow expression.
- `task_description` — Task Description (expression)
  Optional literal value or workflow expression.
- `use_auto_push_task_text` — Use Auto Push Task Text (boolean)
  Optional true-or-false value.
  Default: `"false"`
- `intake_task_category_id` — Intake Task Category Id (expression)
  Optional literal value or workflow expression.
- `intake_task_assignee_id` — Intake Task Assignee Id (niko_task_assignee)
  Optional selected identifier or value.
- `intake_task_assignee_id_manual` — Intake Task Assignee Id Manual (expression)
  Optional literal value or workflow expression.
- `priority` — Priority (select)
  Optional selected identifier or value.
  Default: `"Normal"`
  Options: Normal ("Normal"), Low ("Low"), High ("High")
- `due_date` — Due Date (expression)
  Optional literal value or workflow expression.

## Outputs

- `success` — Success
- `task_id` — Task Id
- `skipped` — Skipped
- `document_id` — Document 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": [
    "document_id"
  ],
  "properties": {
    "due_date": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "niko_org": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "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": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "document_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "is_new_patient": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "task_description": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "intake_task_assignee_id": {
      "type": "string",
      "description": "Optional selected identifier or value.",
      "x-workflow-field-type": "niko_task_assignee"
    },
    "intake_task_category_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "use_auto_push_task_text": {
      "type": "boolean",
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "intake_task_assignee_id_manual": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

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