nowcerts_driver_insert
Add a new driver to an insurance policy by providing driver data and the required policy database ID to establish the connection.
Instructions
Insert a new driver. Must include policyDatabaseId to link to a policy.
ID FIELD NAMING:
Link to policy: "policyDatabaseId" (required - UUID of the policy)
Driver's ID will be auto-generated as "databaseId"
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| driver | Yes | Driver data including policyDatabaseId (required) |
Input Schema (JSON Schema)
{
"properties": {
"driver": {
"description": "Driver data including policyDatabaseId (required)",
"required": true,
"type": "object"
}
},
"required": [
"driver"
],
"type": "object"
}