- Add a regional connector to a vehicle model
Retrieve a vehicle's charging connectors
Update a vehicle's charging connectors
Retrieve a vehicle's current state of charge
Update a vehicle's current state of charge
List vehicles
Create unintegrated vehicle
Retrieve a vehicle
Update a vehicle
Remove a vehicle
List vehicle trims
Create a custom vehicle trim
Retrieve a vehicle trim
List vehicle models
Create vehicle model
List a vehicle model's regional connectors
Retrieve a vehicle model's connector for a region
Update a vehicle model's connector for a region
Retrieve a vehicle model
Get a vehicle model's regional default connector
List vehicle makes
Retrieve a vehicle make
List status logs for a vehicle
Retrieve a specific status log for a vehicle
List API error logs for a vehicle
Retrieve a specific API error log for a vehicle
List location logs for a vehicle
Retrieve a specific location log for a vehicle
List command logs for a vehicle
Retrieve a specific command log for a vehicle
Get VPP modes for a vehicle
Initiate vehicle onboarding
Complete vehicle onboarding
Send vehicle onboarding link
Check vehicle model compatibility in a country
Add user to the vehicle waitlist
Create reconnection URL
Disconnect a vehicle's integration
ProgramVehicleCompatibility
Vehicle
VehicleAPIErrorLog
VehicleCommandLog
VehicleConnectors
VehicleLocationLog
VehicleMake
VehicleModel
VehicleModelConnector
VehicleModelConnectorDefault
VehicleModelWrite
VehicleOnboardingCompleteRequest
VehicleOnboardingCompleteResponse
VehicleOnboardingJsonResponse
VehicleStateOfCharge
VehicleStatusLog
VehicleTrim
VehicleTrimCreate
VehicleWaitlistRequest
VehicleWaitlistResponse
Vehicle
Add a regional connector...
Create a connector row for one region of a vehicle model. (vehicle_model, region) is unique; adding a second row for the same region returns a 400. Requires the vehicle_catalogue:write scope.
Security
oauth2(Required scopes: vehicle_catalogue:write)
- Mock serverhttps://developers.ev.energy/_mock/ev.energy-api-v2/vehicle_models/{vehicle_model_id}/connectors
- Live API for both production and sandbox requests.https://api.ev.energy/v2/vehicle_models/{vehicle_model_id}/connectors
- Staging server for internal testing only.https://api-staging.ev.energy/v2/vehicle_models/{vehicle_model_id}/connectors
curl -i -X POST \
https://developers.ev.energy/_mock/ev.energy-api-v2/vehicle_models/vmod01HSBR8Z36GD7A46K7M4R12VG0/connectors \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-H 'EvEnergy-Version: 2' \
-d '{
"region": "NORTH_AMERICA",
"connector_type": "CCS",
"source": "EV_ENERGY",
"confidence": "HIGH",
"verified_at": "2019-08-24T14:15:22Z"
}'The regional connector was created.
Headers
Indicates the version of the API that generated this response. If EvEnergy-Version was not specified in the request, this will be your OAuth application's default version.
Value:2
The maximum number of requests that can be made to this endpoint per hour. Defaults to 1000 but may vary per client.
Default:1000
Example:"https://api.ev.energy/v2/vehicle_models/vmod01HRFF3SEVSCRAV9B3CHVDFN0H/connectors/NORTH_AMERICA"
Link to the vehicle model this connector belongs to.
Example:"https://api.ev.energy/v2/vehicle_models/vmod01HRFF3SEVSCRAV9B3CHVDFN0H"
The model's native DC-fast connector in this region.
Enum:"CCS""NACS""CHADEMO""GBT"
Provenance of this regional connector value.
Enum:"EV_ENERGY""CAR_API""USER""DVLA""PROVIDER""FLEET"null
Response
{ "url": "https://api.ev.energy/v2/vehicle_models/vmod01HRFF3SEVSCRAV9B3CHVDFN0H/connectors/NORTH_AMERICA", "vehicle_model": "https://api.ev.energy/v2/vehicle_models/vmod01HRFF3SEVSCRAV9B3CHVDFN0H", "region": "NORTH_AMERICA", "connector_type": "CCS", "source": "EV_ENERGY", "confidence": "HIGH", "verified_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z" }