Skip to main content
POST
/
v1
/
vehicles
/
vin-upload-eligibility
Vin Upload Eligibility
curl --request POST \
  --url https://api.volteras.com/v1/vehicles/vin-upload-eligibility \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "vin": "<string>",
  "make": "BMW",
  "region": "NORTH_AMERICA"
}
'
{
  "isEligible": true,
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Body

application/json
vin
string
required

Vehicle identification number. Unique identifier for the vehicle.

Required string length: 17
make
enum<string>
required

Manufacturer of the vehicle

Available options:
BMW,
MINI,
HYUNDAI,
KIA,
TESLA,
AUDI,
SEAT,
SKODA,
VOLKSWAGEN,
CUPRA,
VOLVO,
ENPHASE,
MERCEDES,
TESLA ENERGY,
ABARTH,
ALFA ROMEO,
CHRYSLER,
CITROEN,
DODGE,
DS AUTOMOBILES,
FIAT,
JEEP,
LANCIA,
MASERATI,
OPEL,
PEUGEOT,
RAM,
VAUXHALL,
STELLANTIS,
FORD,
NISSAN,
POLESTAR
region
enum<string> | null

Region of the vehicle in question, defaulting to EUROPE

Available options:
NORTH_AMERICA,
EUROPE

Response

200 - application/json

Successful Response

isEligible
boolean
required

Whether the vehicle is eligible for connection.

message
string | null

Any relevant message about the eligibility status.