nowcerts_policy_insert
Add new insurance policies to the NowCerts system by providing policy data. This tool enables policy creation and management within the insurance platform.
Instructions
Insert a new policy
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| policy | Yes | Policy data to insert |
Input Schema (JSON Schema)
{
"properties": {
"policy": {
"description": "Policy data to insert",
"required": true,
"type": "object"
}
},
"required": [
"policy"
],
"type": "object"
}