Save Insurance
Perform Save Insurance through ClaimSoft.
claimsoft_save_insurancewriteclaimsoft
Inputs
- Patient Id
patient_idexpressionrequiredRequired literal value or workflow expression.
- Policy Data
policy_dataexpressionrequiredRequired literal value or workflow expression.
- Sequence
sequencenumberOptional numeric value.
- Replace Existing
replace_existingbooleanOptional true-or-false value.
Default:
true - Insurance Override
insurance_overridejsonOptional JSON value.
Outputs
successSuccesspatient_idPatient IdsequenceSequenceupdatedUpdatedinsured_idInsured Idext_insured_idExt Insured Idpayer_link_idPayer Link IdmessageMessageerror_kindError KinderrorError
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",
"policy_data"
],
"properties": {
"sequence": {
"type": "number",
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"patient_id": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"policy_data": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"replace_existing": {
"type": "boolean",
"default": true,
"description": "Optional true-or-false value.",
"x-workflow-field-type": "boolean"
},
"insurance_override": {
"description": "Optional JSON value.",
"x-workflow-field-type": "json"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"message": {},
"success": {},
"updated": {},
"sequence": {},
"error_kind": {},
"insured_id": {},
"patient_id": {},
"payer_link_id": {},
"ext_insured_id": {}
},
"additionalProperties": true
}