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