Delete a SoC-based charging plan
DELETE
/vehicles/{name}/plan/soc
const url = 'https://demo.evcc.io/api/vehicles/vehicle_1/plan/soc';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/vehicles/vehicle_1/plan/socDelete the charging plan
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”name
required
Responses
Section titled “Responses”Success - Empty result
Media typeapplication/json
object
Examplegenerated
{}