Complete Task
Perform Complete Task through NikoHealth.
nikohealth_complete_taskwritenikohealth
Inputs
- Task Id
task_idexpressionrequiredRequired literal value or workflow expression.
- Dry Run
dry_runbooleanOptional true-or-false value.
Default:
false - Verify
verifybooleanOptional true-or-false value.
Default:
true
Outputs
successSuccessstatusStatustask_idTask IdcompletedCompletedwas_already_completedWas Already CompletedverifiedVerifieddry_runDry RunmessageMessageerrorError
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
}