Get Patient Documents
Perform Get Patient Documents through NikoHealth.
nikohealth_get_patient_documentsreadnikohealth
Inputs
- Patient Id
patient_idtextrequiredRequired text value.
- Document Type
document_typetextOptional text value.
- Page Size
page_sizenumberOptional numeric value.
Default:
50 - Max Pages
max_pagesnumberOptional numeric value.
Default:
1 - Require Complete
require_completebooleanOptional true-or-false value.
Default:
false
Outputs
successSuccessdocumentsDocumentspatient_document_idsPatient Document IdscountCountpage_countPage Counttruncated_by_page_capTruncated By Page CaperrorError
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": [
"patient_id"
],
"properties": {
"max_pages": {
"type": "number",
"default": 1,
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"page_size": {
"type": "number",
"default": 50,
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"patient_id": {
"type": "string",
"description": "Required text value.",
"x-workflow-field-type": "text"
},
"document_type": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"require_complete": {
"type": "boolean",
"default": false,
"description": "Optional true-or-false value.",
"x-workflow-field-type": "boolean"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"count": {},
"error": {},
"success": {},
"documents": {},
"page_count": {},
"patient_document_ids": {},
"truncated_by_page_cap": {}
},
"additionalProperties": true
}