Remove vehicle
DELETE
/loadpoints/{id}/vehicle
const url = 'https://demo.evcc.io/api/loadpoints/1/vehicle';const options = {method: 'DELETE'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request DELETE \ --url https://demo.evcc.io/api/loadpoints/1/vehicleRemove vehicle from loadpoint. Connected vehicle is treated as guest vehicle.
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”id
required
Loadpoint index starting at 1.
integer
Example
1Loadpoint index starting at 1
Responses
Section titled “Responses”Success - Empty result
Media typeapplication/json
object
Examplegenerated
{}