Skip to documentation
ClaimSoft integration

Save Insurance

Perform Save Insurance through ClaimSoft.

View as Markdown
claimsoft_save_insurance
writeclaimsoft

Inputs

  • patient_id
    expressionrequired
    Patient Id

    Required literal value or workflow expression.

  • policy_data
    expressionrequired
    Policy Data

    Required literal value or workflow expression.

  • sequence
    number
    Sequence

    Optional numeric value.

  • replace_existing
    boolean
    Replace Existing

    Optional true-or-false value.

    Default: true

  • insurance_override
    json
    Insurance Override

    Optional JSON value.

Outputs

  • successSuccess
  • patient_idPatient Id
  • sequenceSequence
  • updatedUpdated
  • insured_idInsured Id
  • ext_insured_idExt Insured Id
  • payer_link_idPayer Link Id
  • messageMessage
  • error_kindError Kind
  • errorError

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
}
View all ClaimSoft actions