The official API for ev.energy, version 2.
- Create reconnection URL
ev.energy v2 API (2.0)
The ID of a user to onboard a device for.
Specify the make of vehicle to be onboarded.
Specify the model of vehicle to be onboarded.
Specify the trim of vehicle to be onboarded.
- Mock serverhttps://developers.ev.energy/_mock/ev.energy-api-v2/vehicle_onboarding
- Live API for both production and sandbox requests.https://api.ev.energy/v2/vehicle_onboarding
- Staging server for internal testing only.https://api-staging.ev.energy/v2/vehicle_onboarding
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://developers.ev.energy/_mock/ev.energy-api-v2/vehicle_onboarding?user_id=user01HN2NJ9NMRZBXT1H6FT9N7735&make_id=vmak01J443798BF893ZHFQVCS0FA23&model_id=vhcl01HNARS42AVJN9QWQF6J52B7MB&trim_id=vhcl01HNARS42AVJN9QWQF6J52B7MB&client_id=sandbox-cc-id'Have the user's browser follow the redirect to be prompted to connect their vehicle to the ev.energy system.
If a make, model or trim were not provided, the user will first be redirect to a screen to select these.
No content- Mock serverhttps://developers.ev.energy/_mock/ev.energy-api-v2/vehicles/{vehicle_id}/reconnect
- Live API for both production and sandbox requests.https://api.ev.energy/v2/vehicles/{vehicle_id}/reconnect
- Staging server for internal testing only.https://api-staging.ev.energy/v2/vehicles/{vehicle_id}/reconnect
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://developers.ev.energy/_mock/ev.energy-api-v2/vehicles/vhcl01HRFF3SEVSCRAV9B3CHVDFN0H/reconnect \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"url": "https://app.ev.energy/vehicle-onboarding/start/56091b3b-86e9-4e7c-a825-f99e5d131234",
"expiry": "2022-11-03T20:26:10.344522Z"
}'Returns the newly generated reconnection URL and it's expiry time.
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.
The maximum number of requests that can be made to this endpoint per hour. Defaults to 1000 but may vary per client.
The number of requests remaining until this client's rate limit is reached.
{ "url": "https://app.ev.energy/vehicle-onboarding/start/56091b3b-86e9-4e7c-a825-f99e5d131234", "expiry": "2022-11-03T20:26:10.344522Z" }