nowcerts_vehicle_insert
Add a new vehicle to an insurance policy by providing vehicle details and linking it to an existing policy using the policy's unique identifier.
Instructions
Insert a new vehicle. Must include policyDatabaseId to link to a policy.
ID FIELD NAMING:
Link to policy: "policyDatabaseId" (required - UUID of the policy)
Vehicle's ID will be auto-generated as "databaseId"
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| vehicle | Yes | Vehicle data including policyDatabaseId (required) |
Input Schema (JSON Schema)
{
"properties": {
"vehicle": {
"description": "Vehicle data including policyDatabaseId (required)",
"required": true,
"type": "object"
}
},
"required": [
"vehicle"
],
"type": "object"
}