diff --git a/workshop.md b/workshop.md index 812a75a..f762e4e 100644 --- a/workshop.md +++ b/workshop.md @@ -22,6 +22,8 @@ Prefill form data on the "Add vehicle" page and the "vehicle activation guide" i | `vehicleYear` | `/\d{4}/` | `2018` | The production year of the vehicle. | | `vehicleBrand` | `Brand` | `volkswagen` | The vehicle brand/make, get [list of supported brands](https://api.connectedcars.io/graphql/graphiql/) from the API's `Brand` type. | | `vehicleUnitSerial` | | `12345678` | The serial number of the unit in the vehicle. | +| `vehicleFuelType` | `FuelType` | `electric` | The vehicle's fuel type, whether it's gasoline, diesel, electric, or similar. | +| `vehicleEngineCode` | | `EBJ` | The vehicle's engine code. | | `customerFirstname` | | `John` | First name of the customer being added to the vehicle. | | `customerLastname` | | `Smith` | Last name of the customer being added to the vehicle. | | `customerEmail` | | `foo@example.com` | Email address of the customer being added to the vehicle. | @@ -30,5 +32,5 @@ Prefill form data on the "Add vehicle" page and the "vehicle activation guide" i Example request: ``` -/integration/vehicle/add?queryType=vin&source=some_system&vehicleVin=WVWZZZ1KZAW123456&customerEmail=johnsmith%40example.com +https://workshop.connectedcars.io/integration/vehicle/add?queryType=vin&source=some_system&vehicleVin=WVWZZZ1KZAW123456&customerEmail=johnsmith%40example.com ```