Asynchronous Matrix Status

Service version: 2
Last edit: 2022.09.02

Purpose

This endpoint lets clients check the status of a matrix job they submitted.

Request data

HTTPS method: GET

  • Constants and parameters enclosed in curly brackets { } must be replaced with their values.
  • Please see the following Request parameters section with the required and optional parameters tables for their values. The generic request format is as follows.

URL request format

All of the following parameters are required:

get
URL request format
https://{baseURL}/routing/matrix/{versionNumber}/async/{matrixJobId}?key={Your_API_Key}

URL request example

get
URL request example
https://api.tomtom.com/routing/matrix/2/async/00-00000000-0000-0000-0000-000000000000-0000?key={Your_API_Key}

curl command request format

get
curl command request format
curl 'https://{baseURL}/routing/matrix/{versionNumber}/async/{matrixJobId}?key={Your_API_Key}'

Request headers

The following table describes HTTP request headers of particular interest to Matrix Routing v2 service clients. Note: There are no required headers in this endpoint.

Optional headers

Description

Tracking-ID

Specifies an identifier for the request.

  • It can be used to trace a call.
  • The value must match the regular expression '^[a-zA-Z0-9-]{1,100}$'.

  • An example of the format that matches this regular expression is UUID: (e.g., 9ac68072-c7a4-11e8-a8d5-f2801f1b9fd1 ). For details check RFC 4122.

  • If specified, it is replicated in the Tracking-ID response header.

  • It is only meant to be used for support and does not involve tracking of you or your users in any form.


Value: An identifier for the request.

Request parameters

The following table describes the request parameters.

  • Required parameters must be used or the call will fail.
  • Optional parameters may be used.
  • A parameter's data type is beneath its name.

Required parameters

Description

baseURL
string

Base URL for calling the API.
Values:

versionNumber
string

The version of the service to call.
Value: 2

matrixJobId
string

Id of the matrix job to check. It is provided in the response body of a submission request.
Value: string

key
string

An API Key valid for the requested service.
Value: Your valid API Key.

Response data

HTTP status codes

Code

Meaning & possible causes

200

Request was successful and information about a matrix job's current status will be returned to the client.

403

Forbidden: The API Key is missing, inactive, invalid, not entitled to use Matrix Routing v2 API, or exceeded the available quota. This can also occur when using HTTP instead of HTTPS.

404

The requested resource could not be found, possible reasons:

  • A job with the provided Id doesn't exist.
  • A job with the provided Id did exist but the retention period has passed, and the status is no longer available.

  • The provided job Id and the API Key do not match.
  • URI path not found.

405

Method Not Allowed: The client used an HTTP method other than GET.

414

Requested URI is too long: Indicates that the URI requested by the client is longer than the server is willing to interpret.

429

Too Many Requests: Quota was exceeded for the API Key.

500

An error occurred while processing the request. Please try again later.

502

Internal network connectivity issue. Please try again later.

503

Service currently unavailable. Please try again later.

504

Internal network connectivity issue or a request that has taken too long to complete. Please try again later.

596

Service not found. Request contains an incorrect FQDN and/or path.

Response headers

The following table lists HTTP response headers of particular interest to Matrix Routing v2 service clients.

Header

Description

Access-Control-Expose-Headers

A comma separated list of HTTP header names that browsers are allowed to access.
Value: Content-Length

Access-Control-Allow-Origin

A header instructing browsers to allow customer websites to contact the Matrix Routing v2 service.
Value: *

Content-Encoding

The Matrix Routing v2 service applies gzip compression to the response if it is requested by the client with the Accept-Encoding header.
Value: gzip

Content-Type

The format of the response.
Value: application/json;charset=utf-8

Tracking-ID

An identifier for the request. If the Tracking-ID header was specified, it is replicated in the response. Otherwise, it is generated automatically by the service. It is only meant to be used for support and does not involve tracking of you or your users in any form.
Value: An identifier for the request.

Successful response

Response body format - JSON
1HTTP 200 OK
2{
3 "jobId": "unique matrix job id",
4 "state": "Submitted" | "Validated" | "Completed" | "Failed",
5 "detailedError": object
6 "statistics": {
7 "totalCount": integer,
8 "successes": integer,
9 "failures": integer,
10 "failureDetails": [
11 {
12 "code": string,
13 "count": integer
14 },
15 ...
16 ]
17 }
18}

Example 1

Status of a job that has passed validation and is in processing:

Passed validation - JSON
1HTTP 200 OK
2{
3 "jobId": "00-00000000-0000-0000-0000-000000000000-0000",
4 "state": "Validated"
5}

Example 2

Status of a job that has failed validation because of an issue in the submission request body:

Failed validation - JSON
1HTTP 200 OK
2{
3 "jobId": "00-00000000-0000-0000-0000-000000000000-0000",
4 "state": "Failed",
5 "detailedError": {
6 "code": "BAD_REQUEST",
7 "message": "Bad Request",
8 "details": [
9 {
10 "code": "BAD_ARGUMENT",
11 "message": "Error(s) detected in POST body",
12 "target": "postBody",
13 "details": [
14 {
15 "code": "BAD_ARGUMENT",
16 "message": "Expected minimum item count: 1, found: 0",
17 "target": "postBody:#/origins"
18 }
19 ]
20 }
21 ]
22 }
23}

Example 3

Status of a completed job containing statistics and failed route details (if any):

Status of a completed job - JSON
1HTTP 200 OK
2{
3 "jobId": "00-00000000-0000-0000-0000-000000000000-0000",
4 "state": "Completed",
5 "statistics": {
6 "totalCount": 1000,
7 "successes": 997,
8 "failures": 3,
9 "failureDetails": [
10 {
11 "code": "MAP_MATCHING_FAILURE",
12 "count": 1
13 },
14 {
15 "code": "UNKNOWN",
16 "count": 2
17 }
18 ]
19 }
20}

Successful response fields

Primary fields

Field

Description

jobId
string

Unique matrix Job Id.

state
string

Possible values:

  • Submitted - request hasn't been validated yet.

  • Validated - request is validated and it's being processed.

  • Completed - request is processed and results are available for download.

  • Failed - processing of the given job could not be successfully completed.


The value list of the state field may be extended with new values in the future, e.g., Paused. Clients should be prepared for this.


Only Completed and Failed states should be considered as the final states of a job. Encountering any other state means that the client should check the status of the job again in the future.


When a job enters the Completed state, its result can be downloaded using the Asynchronous Matrix Download endpoint. Moreover, the Asynchronous Matrix Status and Asynchronous Matrix Download endpoints will now return success and failure statistics for such a job.


When a job enters the Failed state, details of the failure will be available in the response of the Asynchronous Matrix Status endpoint. Its result will not be available for download.

detailedError
object

Optional field, present in an HTTP 200 response body only when the state is Failed. For example, when an asynchronous submission has failed validation, then the details about the failure will be available in this field.

The content of this object is defined the same as in the case of an error response:
detailedError object.

statistics
object

Optional field, present when the state is Completed.
statistics object

statistics object

FieldDescription

totalCount
integer

Total number of routes within this matrix.

successes
integer

Number of successful routes within this matrix.

failures
integer

Number of failed routes within this matrix.

failureDetails
array

When there are any failed cells, this field contains the details about the failure(s).
failureDetails array

failureDetails array

FieldDescription

code
string

One of the defined error codes.

count
integer

Number of failed routes within this matrix caused by errors having given code.

Error response

Error response format - JSON
1{
2 "detailedError": {
3 "code": string,
4 "message": string,
5 "details": [
6 {
7 "code": string,
8 "message": string,
9 "target": string,
10 "details": [
11 ...
12 ],
13 "innerError": {
14 "code": string,
15 "message": string,
16 "innerError": {
17 ...
18 }
19 }
20 },
21 ...
22 ]
23 }
24}
Error response example - JSON
1HTTP 404 NOT FOUND
2{
3 "detailedError": {
4 "code": "MATRIX_NOT_FOUND",
5 "message": "Matrix not found for provided id."
6 }
7}

Error response fields

Primary fields

Field

Description

detailedError
object

Detailed information about the error.
detailedError object

detailedError object

FieldDescription

code
string

One of the defined error codes.

message
string

A human-readable description of the error code. It is intended as an aid to developers and is not suitable for exposure to end users.

target
string

Optional.
Target of the particular error. For example, a parameter name, a path to a JSON property, and others. Contents of this field may change over time.

details
array

Optional.
An array of root causes (more detailed errors) that led to this error.
detailedError object

innerError
object

Optional.
A higher level of details about this error.
innerError object

innerError object

FieldDescription

code
string

One of the defined error codes.

message
string

Optional.
A human-readable representation of the error code. It is intended as an aid to developers and is not suitable for exposure to end users.

innerError
object

Optional.
A higher level of details about this error.
innerError object

Error code hierarchy

List of predefined, hierarchical, human-readable error codes.

  • Top level codes relate to HTTP error codes.
  • They may be refined by error codes in details or innerError.
  • Further levels of refinement are possible by nesting innerError inside innerError.

In the future, the list may be extended with additional codes. New or existing codes may be introduced as children of codes already present in the hierarchy. The application must be ready for the occurrence of an unknown error code (e.g., by stopping error processing at the last understood level of detail).

Each of the following error codes has a scope assigned. Scope assignment is subject to change and extension. Possible scopes are:

  • job - the error code concerns the whole job.
  • cell - the error code concerns failed processing of one of the matrix cells.
    • Codes in this scope may be included in the optional failureDetails array.

Error code

Description

Scope

MATRIX_NOT_FOUND

Top level code for requests which failed with an HTTP 404 status code. May be caused by requesting the Id of a matrix job which:

  • Does not exist.
  • Doesn't match the API Key provided.
  • Has the job result as not ready.
  • Is no longer available because the 24 hour retention period has passed.

job

NOT_FOUND

Top level code for requests which failed with an HTTP 404 status code, caused by providing an incorrect request path.

job

BAD_REQUEST

Top level code for requests which failed with an HTTP 400 status code. Most probable cause is a failed request parameters validation.
Current possible details:

  • BAD_ARGUMENT

  • MALFORMED_BODY

job

INTERNAL_SERVER_ERROR

Top level code for requests which failed with an HTTP 500 status code. The service cannot handle the request right now, an unexpected condition was encountered.

job

SERVICE_UNAVAILABLE

Top level code for requests which failed with an HTTP 503 status code. The service cannot handle the request right now, this is certainly a temporary state.

job

FORBIDDEN

Top level code for requests which failed with an HTTP 403 status code.
Current possible details: OVER_TRANSACTION_LIMIT

job

BAD_ARGUMENT

One of the request parameters did not pass validation. The optional target field may contain the name of the related parameter, or the location inside a JSON object in the request POST body.
Current possible details: BAD_ARGUMENT
Current possible inner errors:

  • ILLEGAL_PARAMETER

  • MISSING_REQUIRED_PARAMETER

  • INVALID_PARAMETER_VALUE

job, cell

OVER_TRANSACTION_LIMIT

Client has exceeded the transaction limit.

job, cell

MALFORMED_BODY

POST body is not properly formatted.

job

ILLEGAL_PARAMETER

Unsupported request parameter was specified.

job

MISSING_REQUIRED_PARAMETER

One of the required parameters was not provided.

job

INVALID_PARAMETER_VALUE

The value of one of the parameters is invalid.

job

UNKNOWN

Unknown error has occurred.

cell

MAP_MATCHING_FAILURE

One of the input points (origin, destination) could not be matched to the map because there is no known drivable section near this point.

cell

NO_ROUTE_FOUND

No valid route could be found for the given origin and destination pair.

cell

CELL_TIMEOUT

Failed to calculate route summary for the given origin and destination pair within timeout.

cell

OUT_OF_REGION

The distance between the given origin and destination pair is too long to calculate the route, considering other requested options. See the API Limitations table on the Asynchronous Matrix Submission page for more information.

cell