Skip to documentation
NikoHealth integration

Push Diagnosis Codes to Patient

Perform Push Diagnosis Codes to Patient through NikoHealth.

View as Markdown
nikohealth_sync_diagnosis_codes
writenikohealth

Inputs

  • patient_id
    textrequired
    Patient Id

    Required text value.

  • document_id
    expressionrequired
    Document Id

    Required literal value or workflow expression.

Outputs

  • successSuccess
  • syncedSynced
  • updatedUpdated
  • already_presentAlready Present
  • icd_codes_foundIcd Codes Found
  • errorError

Output schema completeness: best_effort_declared

Safety

External effect
write
Confirmation recommended
No
Retry safe
No
Dry run supported
No

Schemas

These schemas are first-pass authoring guidance. Runtime validation remains authoritative.

Input schema
{
  "type": "object",
  "required": [
    "patient_id",
    "document_id"
  ],
  "properties": {
    "patient_id": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "document_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "error": {},
    "synced": {},
    "success": {},
    "updated": {},
    "already_present": {},
    "icd_codes_found": {}
  },
  "additionalProperties": true
}
View all NikoHealth actions