Actions
Synchronous Change and Re-evaluate
Apply manual changes to an existing VRP solution and re-evaluate synchronously. Fetches the original request and solution, applies your changes by setting plannedArrival/plannedResource, and returns the modified solution immediately. Use for 'what-if' scenario testing and dispatcher overrides.
post/v2/vrp/jobs/{id}/change
Path parameters
idstring required
Query parameters
millisstring nullable
Request body
Example request
{
"changes": [
{
"job": "job-A",
"after": "job-F",
"resource": "vehicle-1",
"arrival": "2025-01-15T14:30:00Z"
}
],
"operation": "evaluate"
}Response
Modified solution with changes applied
Example response
{
"id": "0000-00000-00000-0000",
"status": "SOLVED",
"score": {
"hard": 0,
"soft": -12345,
"feasible": true
},
"trips": [
{
"resource": "vehicle-1",
"date": "2023-01-13T00:00:00Z",
"departureTime": "2023-01-13T08:00:00Z",
"visits": [
{
"job": "Job-1",
"arrival": "2023-01-13T08:30:00Z",
"serviceTime": 600,
"travelTime": 1800,
"distance": 15000,
"location": {
"latitude": 51.0543,
"longitude": 3.7174
},
"waitTime": 0
}
],
"waitTime": 0,
"travelTime": 3600,
"distance": 30000,
"workTime": 4200,
"serviceTime": 600,
"occupancy": 0.47
}
],
"totalWaitTimeInSeconds": 0,
"totalTravelTimeInSeconds": 3600,
"totalTravelDistanceInMeters": 30000,
"totalServiceTimeInSeconds": 600,
"occupancy": 0.47,
"workloadFairness": 0.95,
"unserved": [],
"suggestions": [],
"messages": [
"Solution found in 2.5 seconds"
]
}