Search Tasks
Perform Search Tasks through NikoHealth.
nikohealth_search_tasksreadnikohealth
Inputs
- Category Name
category_nameexpressionrequiredRequired literal value or workflow expression.
- Statuses
statusesmulti_selectOptional list of selected values.
Default:
["Open"]Options: Open ("Open"), Completed ("Completed"), Archived ("Archived")
- Sort
sortselectOptional selected identifier or value.
Default:
"CreatedOn ASC"Options: Ascending (oldest first) ("CreatedOn ASC"), Descending (newest first) ("CreatedOn DESC")
- Page Size
page_sizenumberOptional numeric value.
Default:
20 - Max Pages
max_pagesnumberOptional numeric value.
Default:
10 - Skip If Empty
skip_if_emptybooleanOptional true-or-false value.
Default:
false
Outputs
successSuccessskippedSkippedcategory_nameCategory Namecategory_idCategory IdstatusesStatusessortSortcountCountitemsItemspages_fetchedPages FetchedtruncatedTruncatederrorError
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
}