Skip to documentation
NikoHealth integration

Get Patient Diagnoses

Perform Get Patient Diagnoses through NikoHealth.

View as Markdown
nikohealth_get_patient_diagnoses
readnikohealth

Inputs

  • patient_id
    textrequired
    Patient Id

    Required text value.

  • skip_if_empty
    boolean
    Skip If Empty

    Optional true-or-false value.

    Default: false

Outputs

  • successSuccess
  • diagnosesDiagnoses
  • icd_codesIcd Codes
  • countCount
  • skippedSkipped
  • reasonReason
  • errorError
  • error_typeError Type

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": {
    "patient_id": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "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": {
    "count": {},
    "error": {},
    "reason": {},
    "skipped": {},
    "success": {},
    "diagnoses": {},
    "icd_codes": {},
    "error_type": {}
  },
  "additionalProperties": true
}
View all NikoHealth actions