Fill Insurance Details From Eligibility
Perform Fill Insurance Details From Eligibility through NikoHealth.
nikohealth_fill_insurance_details_from_eligibilitywritenikohealth
Inputs
- Insurance Id
insurance_idexpressionrequiredRequired literal value or workflow expression.
- Eligibility Result
eligibility_resultexpressionrequiredRequired literal value or workflow expression.
- Coinsurance Service Codes
coinsurance_service_codestextOptional text value.
- Dry Run
dry_runbooleanOptional true-or-false value.
Outputs
successSuccessinsurance_idInsurance Idupdated_fieldsUpdated Fieldsskipped_fieldsSkipped Fieldsdry_runDry RunerrorError
Output schema completeness: best_effort_declared
Safety
- External effect
- write
- Confirmation recommended
- No
- Retry safe
- No
- Dry run supported
- Yes
Schemas
These schemas are first-pass authoring guidance. Runtime validation remains authoritative.
Input schema
{
"type": "object",
"required": [
"insurance_id",
"eligibility_result"
],
"properties": {
"dry_run": {
"type": "boolean",
"description": "Optional true-or-false value.",
"x-workflow-field-type": "boolean"
},
"insurance_id": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"eligibility_result": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"coinsurance_service_codes": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"dry_run": {},
"success": {},
"insurance_id": {},
"skipped_fields": {},
"updated_fields": {}
},
"additionalProperties": true
}