Update minimum current
POST
/loadpoints/{id}/mincurrent/{current}
const url = 'https://demo.evcc.io/api/loadpoints/1/mincurrent/16';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/mincurrent/16Updates the minimum current of the loadpoint.
Parameters
Section titled β Parameters βPath Parameters
Section titled βPath Parameters β id
required
Loadpoint index starting at 1.
integer
Example
1Loadpoint index starting at 1
current
required
Electric current in A
number
Example
16Electric current in A
Responses
Section titled β Responses βSuccess - Number result
Media type application/json
object
result
number
Example generated
{ "result": 1}