GET
/
v2
/
vrp
/
jobs
/
{id}
/
status
Status
curl --request GET \
  --url https://api.solvice.io/v2/vrp/jobs/{id}/status \
  --header 'Authorization: <api-key>'
{
  "id": "<string>",
  "status": "SOLVING",
  "solveDuration": 123,
  "errors": [
    {
      "code": 123,
      "message": "<string>"
    }
  ],
  "warnings": [
    {
      "code": 123,
      "message": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Api Key based authentication (apikey)

Path Parameters

id
string
required

Response

Status

Status of a solve job

id
string
required

Job ID

status
enum<string> | null

Status of the solve.

Available options:
QUEUED,
SOLVING,
SOLVED,
ERROR
Examples:

"SOLVING"

solveDuration
integer | null

Duration of the solve in seconds

errors
object[] | null

List of errors

warnings
object[] | null

List of warnings