Remove smart feed-in priority limit for all loadpoints.
DELETE
/smartfeedinprioritylimit
const url = 'https://demo.evcc.io/api/smartfeedinprioritylimit';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/smartfeedinprioritylimitConvenience method to remove limit for all loadpoints at once. Value is applied to each individual loadpoint.
Responses
Section titled “ Responses ”Success - Null result
Media type application/json
object
result
Value is always null
object
Example generated
{ "result": {}}