v1
latestOpenAPI 3.0.12026-07-243686491.1 MBCharge Points Charging Rules
Create a charging rule for a charge point
Required scope: charge-points:write </br>Organization authorization: supported
post/api/v1/charge-points/{chargePointId}/charging-rules
Path parameters
chargePointIdinteger required
Request body
Example request
{
"name": "Smart charging rule",
"isActive": true,
"isSponsored": true,
"creatorUserId": 123,
"vehicleId": 123,
"settings": {
"start": "22:00",
"beReadyAt": "06:00",
"defaultMaxBatteryPercentage": 80
}
}Response
Charging rule for charge point created
Example response
{
"id": 1,
"name": "Smart charging rule",
"isActive": true,
"isSponsored": true,
"creatorUserId": 123,
"vehicleId": 123,
"settings": {
"start": "22:00",
"beReadyAt": "06:00",
"defaultMaxBatteryPercentage": 80
}
}