create_vehicle
Add a new vehicle to a dealer's inventory by providing details like VIN, make, model, year, mileage, and price. Returns the created vehicle record.
Instructions
Add a new vehicle to a dealer's inventory.
Use when: "I just took in a 2023 Toyota Camry — add it to dealer 1042's lot." Example: account_id=1042, vin="1HGCM82633A123456", make="Honda", model="Civic", year=2024, mileage=12500, price=24995, stock_number="P1042-7" → creates the listing and returns the new vehicle record.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| vin | Yes | ||
| make | Yes | ||
| year | Yes | ||
| model | Yes | ||
| price | Yes | ||
| mileage | Yes | ||
| account_id | Yes | ||
| stock_number | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |