Push Insurance to Patient
Perform Push Insurance to Patient through NikoHealth.
nikohealth_sync_insurancewritenikohealth
Inputs
- Patient Id
patient_idtextrequiredRequired text value.
- Document Id
document_idexpressionrequiredRequired literal value or workflow expression.
Outputs
successSuccessstatusStatussynced_countSynced Countskipped_countSkipped Countpolicies_foundPolicies Foundalready_present_countAlready Present Countunmapped_countUnmapped Countfailed_countFailed Countfailure_reasonsFailure ReasonserrorError
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": {},
"status": {},
"success": {},
"failed_count": {},
"synced_count": {},
"skipped_count": {},
"policies_found": {},
"unmapped_count": {},
"failure_reasons": {},
"already_present_count": {}
},
"additionalProperties": true
}