nowcerts_vehicle_bulkInsert
Add multiple vehicles to policies in bulk by providing vehicle data with required policyDatabaseId for each entry. Automatically generates vehicle database IDs during the insertion process.
Instructions
Bulk insert multiple vehicles. Each must include policyDatabaseId.
ID FIELD NAMING:
Link to policy: "policyDatabaseId" (required for each vehicle)
Vehicle IDs will be auto-generated as "databaseId"
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| vehicles | Yes | Array of vehicle data, each with policyDatabaseId |
Input Schema (JSON Schema)
{
"properties": {
"vehicles": {
"description": "Array of vehicle data, each with policyDatabaseId",
"items": {
"type": "object"
},
"required": true,
"type": "array"
}
},
"required": [
"vehicles"
],
"type": "object"
}