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 request | Description |
|---|---|
| PUT Vehicle | Creates 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:
| Properties | Type | Description |
|---|---|---|
| plate | string | Vehicle's plate. |
| vin | string | Vehicle's VIN. |
| ownerName | string? | Vehicle's owner name. |
| engineNumber | string? | Vehicle's engine number. |
| taxIdentifier | string? | Tax identifier of the vehicle owner. |
| legalName | string? | Legal name of the vehicle owner. |