Delete energy-based charging plan
DELETE
/loadpoints/{id}/plan/energy
const url = 'https://demo.evcc.io/api/loadpoints/1/plan/energy';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/plan/energyDelete charging plan. Only available when a vehicle without SoC is connected.
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
{}