Skip to documentation
NikoHealth integration

Update Patient Tags

Perform Update Patient Tags through NikoHealth.

View as Markdown
nikohealth_update_patient_tags
writenikohealth

Inputs

  • patient_id
    expressionrequired
    Patient Id

    Required literal value or workflow expression.

  • tag_ids
    expressionrequired
    Tag Ids

    Required literal value or workflow expression.

  • tag_ids_select
    multi_selectdynamic options
    Tag Ids Select

    Optional list of selected values. Retrieve allowed values from the dynamic options endpoint.

  • clear_when_empty
    boolean
    Clear When Empty

    Optional true-or-false value.

    Default: false

Outputs

  • successSuccess
  • skippedSkipped
  • 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": [
    "patient_id",
    "tag_ids"
  ],
  "properties": {
    "tag_ids": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "patient_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "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"
    },
    "clear_when_empty": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "error": {},
    "skipped": {},
    "success": {}
  },
  "additionalProperties": true
}
View all NikoHealth actions