Push Diagnosis Codes to Patient
Perform Push Diagnosis Codes to Patient through NikoHealth.
nikohealth_sync_diagnosis_codeswritenikohealth
Inputs
- Patient Id
patient_idtextrequiredRequired text value.
- Document Id
document_idexpressionrequiredRequired literal value or workflow expression.
Outputs
successSuccesssyncedSyncedupdatedUpdatedalready_presentAlready Presenticd_codes_foundIcd Codes FounderrorError
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
}