Search Patient
Perform Search Patient through NikoHealth.
nikohealth_search_patientreadnikohealth
Inputs
- First Name
first_nametextOptional text value.
- Last Name
last_nametextOptional text value.
- Date Of Birth
date_of_birthtextOptional text value.
- Full Address
full_addresstextOptional text value.
- Tags
tagsexpressionOptional literal value or workflow expression.
- Created From
created_fromexpressionOptional literal value or workflow expression.
- Created To
created_toexpressionOptional literal value or workflow expression.
- Sort By
sort_byselectOptional selected identifier or value.
Default:
"name"Options: Full Name ("name"), Created Date ("created"), Modified Date ("modified")
- Sort Descending
sort_descendingbooleanOptional true-or-false value.
Default:
false - Page Size
page_sizenumberOptional numeric value.
Default:
100 - Page Index
page_indexnumberOptional numeric value.
Default:
0
Outputs
patientsPatientscountCountsort_expressionSort Expressionunknown_tagsUnknown TagserrorError
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": {
"tags": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"sort_by": {
"enum": [
"name",
"created",
"modified"
],
"type": "string",
"default": "name",
"description": "Optional selected identifier or value.",
"x-workflow-field-type": "select"
},
"last_name": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"page_size": {
"type": "number",
"default": 100,
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"created_to": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"first_name": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"page_index": {
"type": "number",
"default": 0,
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"created_from": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"full_address": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"date_of_birth": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"sort_descending": {
"type": "boolean",
"default": false,
"description": "Optional true-or-false value.",
"x-workflow-field-type": "boolean"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"count": {},
"error": {},
"patients": {},
"unknown_tags": {},
"sort_expression": {}
},
"additionalProperties": true
}