Skip to main content
POST
/
v1
/
vehicles
/
connect
Bulk Vin Connect
curl --request POST \
  --url https://api.volteras.com/v1/vehicles/connect \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "vehicles": [
    {
      "vin": "<string>",
      "make": "BMW",
      "region": "NORTH_AMERICA",
      "registrationPlate": "<string>",
      "model": "<string>",
      "modelYear": 123,
      "batteryCapacity": 123,
      "horsepower": 123,
      "generation": "<string>",
      "wltpRange": 123,
      "countryCode": "<string>",
      "tags": [
        {
          "key": "<string>",
          "value": "<string>"
        }
      ]
    }
  ]
}
'
{
  "id": "<string>",
  "status": "CREATED",
  "createdAt": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Request model to connect multiple VINs

vehicles
ConnectVehicleRequest · object[]
required

The vehicles to connect

Maximum array length: 100

Response

202 - application/json

Successful Response

Response for async bulk vehicle upload endpoint on connect-api

id
string
required
status
enum<string>
required
Available options:
CREATED,
PROCESSING,
COMPLETED,
FAILED
createdAt
string<date-time>
required