Skip to documentation
NikoHealth integration

Search Tasks

Perform Search Tasks through NikoHealth.

View as Markdown
nikohealth_search_tasks
readnikohealth

Inputs

  • category_name
    expressionrequired
    Category Name

    Required literal value or workflow expression.

  • statuses
    multi_select
    Statuses

    Optional list of selected values.

    Default: ["Open"]

    Options: Open ("Open"), Completed ("Completed"), Archived ("Archived")

  • sort
    select
    Sort

    Optional selected identifier or value.

    Default: "CreatedOn ASC"

    Options: Ascending (oldest first) ("CreatedOn ASC"), Descending (newest first) ("CreatedOn DESC")

  • page_size
    number
    Page Size

    Optional numeric value.

    Default: 20

  • max_pages
    number
    Max Pages

    Optional numeric value.

    Default: 10

  • skip_if_empty
    boolean
    Skip If Empty

    Optional true-or-false value.

    Default: false

Outputs

  • successSuccess
  • skippedSkipped
  • category_nameCategory Name
  • category_idCategory Id
  • statusesStatuses
  • sortSort
  • countCount
  • itemsItems
  • pages_fetchedPages Fetched
  • truncatedTruncated
  • errorError

Output schema completeness: best_effort_declared

Safety

External effect
read
Confirmation recommended
No
Retry safe
Yes
Dry run supported
No

Schemas

These schemas are first-pass authoring guidance. Runtime validation remains authoritative.

Input schema
{
  "type": "object",
  "required": [
    "category_name"
  ],
  "properties": {
    "sort": {
      "enum": [
        "CreatedOn ASC",
        "CreatedOn DESC"
      ],
      "type": "string",
      "default": "CreatedOn ASC",
      "description": "Optional selected identifier or value.",
      "x-workflow-field-type": "select"
    },
    "statuses": {
      "type": "array",
      "items": {
        "enum": [
          "Open",
          "Completed",
          "Archived"
        ],
        "type": "string"
      },
      "default": [
        "Open"
      ],
      "description": "Optional list of selected values.",
      "x-workflow-field-type": "multi_select"
    },
    "max_pages": {
      "type": "number",
      "default": 10,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "page_size": {
      "type": "number",
      "default": 20,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "category_name": {
      "description": "Required 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"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "sort": {},
    "count": {},
    "error": {},
    "items": {},
    "skipped": {},
    "success": {},
    "statuses": {},
    "truncated": {},
    "category_id": {},
    "category_name": {},
    "pages_fetched": {}
  },
  "additionalProperties": true
}
View all NikoHealth actions