Skip to documentation
NikoHealth integration

Update Fax Tags

Perform Update Fax Tags through NikoHealth.

View as Markdown
nikohealth_update_fax_tags
writenikohealth

Inputs

  • fax_id
    textrequired
    Fax Id

    Required text value.

  • tag_ids
    textrequired
    Tag Ids

    Required text value.

  • tag_ids_select
    multi_selectdynamic options
    Tag Ids Select

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

  • mode
    select
    Mode

    Optional selected identifier or value.

    Default: "replace"

    Options: Append ("append"), Replace ("replace")

Outputs

  • successSuccess
  • modeMode
  • 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",
  "required": [
    "fax_id",
    "tag_ids"
  ],
  "properties": {
    "mode": {
      "enum": [
        "append",
        "replace"
      ],
      "type": "string",
      "default": "replace",
      "description": "Optional selected identifier or value.",
      "x-workflow-field-type": "select"
    },
    "fax_id": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "tag_ids": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "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": {
    "mode": {},
    "error": {},
    "success": {},
    "tag_ids": {}
  },
  "additionalProperties": true
}
View all NikoHealth actions