Skip to documentation
NikoHealth integration

Complete Task

Perform Complete Task through NikoHealth.

View as Markdown
nikohealth_complete_task
writenikohealth

Inputs

  • task_id
    expressionrequired
    Task Id

    Required literal value or workflow expression.

  • dry_run
    boolean
    Dry Run

    Optional true-or-false value.

    Default: false

  • verify
    boolean
    Verify

    Optional true-or-false value.

    Default: true

Outputs

  • successSuccess
  • statusStatus
  • task_idTask Id
  • completedCompleted
  • was_already_completedWas Already Completed
  • verifiedVerified
  • dry_runDry Run
  • messageMessage
  • errorError

Output schema completeness: best_effort_declared

Safety

External effect
write
Confirmation recommended
No
Retry safe
No
Dry run supported
Yes

Schemas

These schemas are first-pass authoring guidance. Runtime validation remains authoritative.

Input schema
{
  "type": "object",
  "required": [
    "task_id"
  ],
  "properties": {
    "verify": {
      "type": "boolean",
      "default": true,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "dry_run": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "task_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "error": {},
    "status": {},
    "dry_run": {},
    "message": {},
    "success": {},
    "task_id": {},
    "verified": {},
    "completed": {},
    "was_already_completed": {}
  },
  "additionalProperties": true
}
View all NikoHealth actions