Skip to main content

Overview

VehicleInfo contains the information Sync knows (or is provided) about a vehicle.

While some resources can be processed with only the plate and vin, others may require additional details such as the owner's name or engine number. This object centralizes that extra data, ensuring Sync can successfully process vehicles in all supported portals and websites.

Methods

HTTP requestDescription
PUT VehicleCreates or updates a vehicle in Sync platform.

Object representation

{
plate: string;
vin: string;
ownerName?: string;
engineNumber?: string;
taxIdentifier?: string;
legalName?: string;
}

Properties

The following table defines the properties that appear in this object:

PropertiesTypeDescription
platestringVehicle's plate.
vinstringVehicle's VIN.
ownerNamestring?Vehicle's owner name.
engineNumberstring?Vehicle's engine number.
taxIdentifierstring?Tax identifier of the vehicle owner.
legalNamestring?Legal name of the vehicle owner.