Update Insurance Details
Perform Update Insurance Details through NikoHealth.
nikohealth_update_insurance_detailswritenikohealth
Inputs
- Insurance Id
insurance_idexpressionrequiredRequired literal value or workflow expression.
- In Network Individual Calendar Year Deductible
in_network_individual_calendar_year_deductiblenumberOptional numeric value.
- In Network Individual Remaining Deductible
in_network_individual_remaining_deductiblenumberOptional numeric value.
- In Network Individual Out Of Pocket Max
in_network_individual_out_of_pocket_maxnumberOptional numeric value.
- In Network Individual Out Of Pocket Remaining
in_network_individual_out_of_pocket_remainingnumberOptional numeric value.
- In Network Individual Coinsurance
in_network_individual_coinsurancenumberOptional numeric value.
- In Network Individual Copay
in_network_individual_copaynumberOptional numeric value.
- In Network Family Calendar Year Deductible
in_network_family_calendar_year_deductiblenumberOptional numeric value.
- In Network Family Remaining Deductible
in_network_family_remaining_deductiblenumberOptional numeric value.
- In Network Family Out Of Pocket Max
in_network_family_out_of_pocket_maxnumberOptional numeric value.
- In Network Family Out Of Pocket Remaining
in_network_family_out_of_pocket_remainingnumberOptional numeric value.
- Out Of Network Individual Calendar Year Deductible
out_of_network_individual_calendar_year_deductiblenumberOptional numeric value.
- Out Of Network Individual Remaining Deductible
out_of_network_individual_remaining_deductiblenumberOptional numeric value.
- Out Of Network Individual Out Of Pocket Max
out_of_network_individual_out_of_pocket_maxnumberOptional numeric value.
- Out Of Network Individual Out Of Pocket Remaining
out_of_network_individual_out_of_pocket_remainingnumberOptional numeric value.
- Out Of Network Individual Coinsurance
out_of_network_individual_coinsurancenumberOptional numeric value.
- Out Of Network Individual Copay
out_of_network_individual_copaynumberOptional numeric value.
- Out Of Network Family Calendar Year Deductible
out_of_network_family_calendar_year_deductiblenumberOptional numeric value.
- Out Of Network Family Remaining Deductible
out_of_network_family_remaining_deductiblenumberOptional numeric value.
- Out Of Network Family Out Of Pocket Max
out_of_network_family_out_of_pocket_maxnumberOptional numeric value.
- Out Of Network Family Out Of Pocket Remaining
out_of_network_family_out_of_pocket_remainingnumberOptional numeric value.
Outputs
successSuccessinsurance_idInsurance Idupdated_fieldsUpdated FieldserrorError
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": [
"insurance_id"
],
"properties": {
"insurance_id": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"in_network_individual_copay": {
"type": "number",
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"out_of_network_individual_copay": {
"type": "number",
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"in_network_individual_coinsurance": {
"type": "number",
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"in_network_family_out_of_pocket_max": {
"type": "number",
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"out_of_network_individual_coinsurance": {
"type": "number",
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"in_network_family_remaining_deductible": {
"type": "number",
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"in_network_individual_out_of_pocket_max": {
"type": "number",
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"out_of_network_family_out_of_pocket_max": {
"type": "number",
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"in_network_family_out_of_pocket_remaining": {
"type": "number",
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"in_network_family_calendar_year_deductible": {
"type": "number",
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"in_network_individual_remaining_deductible": {
"type": "number",
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"out_of_network_family_remaining_deductible": {
"type": "number",
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"out_of_network_individual_out_of_pocket_max": {
"type": "number",
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"in_network_individual_out_of_pocket_remaining": {
"type": "number",
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"out_of_network_family_out_of_pocket_remaining": {
"type": "number",
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"in_network_individual_calendar_year_deductible": {
"type": "number",
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"out_of_network_family_calendar_year_deductible": {
"type": "number",
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"out_of_network_individual_remaining_deductible": {
"type": "number",
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"out_of_network_individual_out_of_pocket_remaining": {
"type": "number",
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"out_of_network_individual_calendar_year_deductible": {
"type": "number",
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"success": {},
"insurance_id": {},
"updated_fields": {}
},
"additionalProperties": true
}