nowcerts_insured_insertNoOverride
Add new insured records to the Nowcerts system while preserving existing data, preventing accidental overwrites of insurance information.
Instructions
Insert insured without overriding existing data
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| insured | Yes | Insured data |
Input Schema (JSON Schema)
{
"properties": {
"insured": {
"description": "Insured data",
"required": true,
"type": "object"
}
},
"required": [
"insured"
],
"type": "object"
}