nowcerts_vehicle_bulkInsert
Add multiple vehicles to the NowCerts insurance platform in a single operation using this bulk insertion tool. Upload vehicle data arrays to efficiently manage insurance records.
Instructions
Bulk insert multiple vehicles
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| vehicles | Yes | Array of vehicle data |
Input Schema (JSON Schema)
{
"properties": {
"vehicles": {
"description": "Array of vehicle data",
"items": {
"type": "object"
},
"required": true,
"type": "array"
}
},
"required": [
"vehicles"
],
"type": "object"
}