nowcerts_insured_insert
Add new insured records to the Nowcerts system to manage policyholder information and maintain accurate insurance documentation.
Instructions
Insert a new insured record
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| insured | Yes | Insured data to insert |
Input Schema (JSON Schema)
{
"properties": {
"insured": {
"description": "Insured data to insert",
"required": true,
"type": "object"
}
},
"required": [
"insured"
],
"type": "object"
}