Skip to documentation
NikoHealth integration

Add Patient Tags

Perform Add Patient Tags through NikoHealth.

View as Markdown
nikohealth_add_patient_tags
writenikohealth

Inputs

  • tag_request
    expression
    Tag Request

    Optional literal value or workflow expression.

  • patient_id
    expression
    Patient Id

    Optional literal value or workflow expression.

  • tag_ids
    expression
    Tag Ids

    Optional 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.

  • skip_if_empty
    boolean
    Skip If Empty

    Optional true-or-false value.

    Default: false

Outputs

  • successSuccess
  • skippedSkipped
  • patient_idPatient Id
  • tag_idsTag Ids
  • 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",
  "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
}
View all NikoHealth actions