Page 1 of 1

Route Optimization API - Api Changes 1.62.0 (29.04.2026)

Posted: Wed Apr 29, 2026 11:46 am
by Bernd Welter
ApiVarVersionTypeDateDescription
Route Optimization OptiFlow API1.62.0FEATURE29.04.2026Added breaks field to charging station to control whether breaks may overlap with charging.
Example created by PTV Mira

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 }
        ]
      }
    }
  ]
}