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 type application/json
object
Example generated
{}