| Api | VarVersion | Type | Date | Description |
|---|---|---|---|---|
| Route Optimization OptiFlow API | 1.62.0 | FEATURE | 29.04.2026 | Added breaks field to charging station to control whether breaks may overlap with charging. |
Code: Select all
{
"locations": [
{
"id": "DEPOT_MAIN",
"latitude": 50.9375,
"longitude": 6.9603,
"chargingStations": [
{
"id": "CHARGER_DEPOT",
"maximumPower": 150,
"preparationDuration": 300,
"completionDuration": 180,
"breaks": {
"mayOverlap": true
}
}
]
}
],
"vehicles": [
{
"id": "EV_001",
"battery": {
"capacity": 80,
"consumption": { "perHundredKilometers": 25 }
},
"breaks": {
"driving": [
{ "maximumDrivingDuration": 16200, "minimumBreakDuration": 2700 }
]
}
}
]
}