Update session SoC limit
POST
/loadpoints/{id}/limitsoc/{soc}
const url = 'https://demo.evcc.io/api/loadpoints/1/limitsoc/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/loadpoints/1/limitsoc/60Sets the session SoC limit. Cleared on disconnect. Takes precedence over the vehicle’s configured limit while set; once cleared (set to 0), the vehicle limit applies again.
Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” id
required
Loadpoint index starting at 1.
integer
Example
1Loadpoint index starting at 1
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}