Set battery buffer start SoC
POST
/bufferstartsoc/{soc}
const url = 'https://demo.evcc.io/api/bufferstartsoc/60';const options = {method: 'POST'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://demo.evcc.io/api/bufferstartsoc/60Set battery buffer start SoC.
Parameters
Section titled β Parameters βPath Parameters
Section titled βPath Parameters β soc
required
SOC in %
number
Example
60SOC in %
Responses
Section titled β Responses βSuccess - Number result
Media type application/json
object
result
number
Example generated
{ "result": 1}