Homeyscript will indeed be the solution to set the charging current. This homeyscript gives me at least a good response:
`const response = await fetch("http://<local ip>/api/wlac/v1/evinterface",{
headers: {
Accept: "application/json",
"Content-Type": "application/json","Authorization":"<authorization code>"
},
method: "PATCH",
body: JSON.stringify({ChargeCurrentLimit: 14000})
})
const data = await response.json();
log(data);
`
Many thanks for the suggestions & help!