Find Patients
Perform Find Patients through NikoHealth.
nikohealth_find_patientsreadnikohealth
Inputs
- Lookback Hours
lookback_hoursnumberOptional numeric value.
- Created From
created_fromexpressionOptional literal value or workflow expression.
- Created To
created_toexpressionOptional literal value or workflow expression.
- Timezone
timezonetextOptional text value.
Default:
"America/Chicago" - Page Size
page_sizenumberOptional numeric value.
Default:
100 - Max Pages
max_pagesnumberOptional numeric value.
Default:
50 - Record Limit
record_limitnumberOptional numeric value.
- Sort Expression
sort_expressiontextOptional text value.
Default:
"FullName ASC" - Tag Ids
tag_idsexpressionOptional literal value or workflow expression.
- Tag Names
tag_namesexpressionOptional literal value or workflow expression.
- Exclude Tag Ids
exclude_tag_idsexpressionOptional literal value or workflow expression.
- Exclude Tag Names
exclude_tag_namesexpressionOptional literal value or workflow expression.
Outputs
successSuccesspatientsPatientscountCountexcluded_by_tag_countExcluded By Tag Countunknown_tagsUnknown Tagstruncated_by_record_limitTruncated By Record Limitpages_fetchedPages Fetchedtruncated_by_page_capTruncated By Page Capwindow_sourceWindow Sourcecreated_fromCreated Fromcreated_toCreated ToerrorError
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",
"properties": {
"tag_ids": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"timezone": {
"type": "string",
"default": "America/Chicago",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"max_pages": {
"type": "number",
"default": 50,
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"page_size": {
"type": "number",
"default": 100,
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"tag_names": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"created_to": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"created_from": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"record_limit": {
"type": "number",
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"lookback_hours": {
"type": "number",
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"exclude_tag_ids": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"sort_expression": {
"type": "string",
"default": "FullName ASC",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"exclude_tag_names": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"count": {},
"error": {},
"success": {},
"patients": {},
"created_to": {},
"created_from": {},
"unknown_tags": {},
"pages_fetched": {},
"window_source": {},
"excluded_by_tag_count": {},
"truncated_by_page_cap": {},
"truncated_by_record_limit": {}
},
"additionalProperties": true
}