Skip to documentation
NikoHealth integration

Create Intake Review Task

Perform Create Intake Review Task through NikoHealth.

View as Markdown
nikohealth_create_intake_task
writenikohealth

Inputs

  • document_id
    expressionrequired
    Document Id

    Required literal value or workflow expression.

  • niko_org
    text
    Niko Org

    Optional text value.

  • patient_id
    expression
    Patient Id

    Optional literal value or workflow expression.

  • is_new_patient
    expression
    Is New Patient

    Optional literal value or workflow expression.

  • task_title
    expression
    Task Title

    Optional literal value or workflow expression.

  • task_description
    expression
    Task Description

    Optional literal value or workflow expression.

  • use_auto_push_task_text
    boolean
    Use Auto Push Task Text

    Optional true-or-false value.

    Default: "false"

  • intake_task_category_id
    expression
    Intake Task Category Id

    Optional literal value or workflow expression.

  • intake_task_assignee_id
    niko_task_assignee
    Intake Task Assignee Id

    Optional selected identifier or value.

  • intake_task_assignee_id_manual
    expression
    Intake Task Assignee Id Manual

    Optional literal value or workflow expression.

  • priority
    select
    Priority

    Optional selected identifier or value.

    Default: "Normal"

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

  • due_date
    expression
    Due Date

    Optional literal value or workflow expression.

Outputs

  • successSuccess
  • task_idTask Id
  • skippedSkipped
  • document_idDocument 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": [
    "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
{
  "type": "object",
  "properties": {
    "error": {},
    "skipped": {},
    "success": {},
    "task_id": {},
    "document_id": {}
  },
  "additionalProperties": true
}
View all NikoHealth actions