GET
/
v2
/
vrp
/
jobs
/
{id}
/
explanation
curl --request GET \
  --url https://api.solvice.io/v2/vrp/jobs/{id}/explanation \
  --header 'Authorization: <api-key>'
{
  "score": {
    "hardScore": 123,
    "mediumScore": 123,
    "softScore": 123,
    "feasible": true
  },
  "conflicts": {
    "constraint": "<string>",
    "score": "<string>",
    "job": "<string>",
    "resource": "<string>",
    "tag": "<string>",
    "relation": "<string>"
  },
  "unresolved": {
    "constraint": "TRIP_CAPACITY",
    "score": "<string>"
  },
  "alternatives": {}
}

Authorizations

Authorization
string
header
required

Api Key based authentication (apikey)

Path Parameters

id
string
required

Response

200 - application/json
OK

Explains the conflicts of a certain routing solution and the unresolved constraints.