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>",
      "countryCode": "<string>",
      "registrationPlate": "<string>",
      "model": "<string>",
      "modelYear": 123,
      "batteryCapacity": 123,
      "horsepower": 123,
      "generation": "<string>",
      "wltpRange": 123,
      "registrationDate": "2023-12-25",
      "tags": [
        {
          "key": "<string>",
          "value": "<string>"
        }
      ]
    }
  ]
}
'
{
  "id": "<string>",
  "createdAt": "2023-11-07T05:31:56Z"
}

Documentation Index

Fetch the complete documentation index at: https://docs.volteras.com/llms.txt

Use this file to discover all available pages before exploring further.

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