Add Patient Tags
Perform Add Patient Tags through NikoHealth.
nikohealth_add_patient_tagswritenikohealth
Inputs
- Tag Request
tag_requestexpressionOptional literal value or workflow expression.
- Patient Id
patient_idexpressionOptional literal value or workflow expression.
- Tag Ids
tag_idsexpressionOptional literal value or workflow expression.
- Tag Ids Select
tag_ids_selectmulti_selectdynamic optionsOptional list of selected values. Retrieve allowed values from the dynamic options endpoint.
- Skip If Empty
skip_if_emptybooleanOptional true-or-false value.
Default:
false
Outputs
successSuccessskippedSkippedpatient_idPatient Idtag_idsTag IdserrorError
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",
"properties": {
"tag_ids": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"patient_id": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"tag_request": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"skip_if_empty": {
"type": "boolean",
"default": false,
"description": "Optional true-or-false value.",
"x-workflow-field-type": "boolean"
},
"tag_ids_select": {
"type": "array",
"items": {
"type": "string"
},
"description": "Optional list of selected values. Retrieve allowed values from the dynamic options endpoint.",
"x-dynamic-options": true,
"x-workflow-field-type": "multi_select"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"skipped": {},
"success": {},
"tag_ids": {},
"patient_id": {}
},
"additionalProperties": true
}