Purpose

Retrieve a list of all matching jobs in your account, including their statuses and metadata.

Request data

HTTP method: GET

  • Constants and parameters enclosed in curly brackets {} must be replaced with their values.
  • See the following Request parameters section with the required and optional parameters tables for these values.

URL format

get
URL format
https://api.tomtom.com/maps/orbis/platform/gem/jobs

URL example

get
URL example
https://api.tomtom.com/maps/orbis/platform/gem/jobs

curl command example

get
curl command example
1curl -X GET "https://api.tomtom.com/maps/orbis/platform/gem/jobs" \
2 -H "tomtom-api-key: YOUR_API_KEY" \
3 -H "Authorization: Bearer YOUR_AUTH_TOKEN" \
4 -H "X-Version: 1"

Request headers

HeaderRequiredDescription
tomtom-api-keyYesYour TomTom API key
AuthorizationYesBearer token from Azure CLI
X-VersionYesAPI version (use 1)

Response data

Response example

1{
2 "jobs": [
3 {
4 "jobRunId": "job-abc123",
5 "storageId": "storage-001",
6 "inputFileName": "roads_data.parquet",
7 "outputFileName": "roads_data_matched.parquet",
8 "matchingType": "road",
9 "overtureRelease": "<latest-overture-release>",
10 "status": "finished",
11 "createdAt": "2026-01-20T10:00:00Z",
12 "modifiedAt": "2026-01-20T10:15:00Z"
13 },
14 {
15 "jobRunId": "job-def456",
16 "storageId": "storage-001",
17 "inputFileName": "places_data.parquet",
18 "matchingType": "road",
19 "overtureRelease": "<latest-overture-release>",
20 "status": "running",
21 "createdAt": "2026-01-21T14:30:00Z",
22 "modifiedAt": "2026-01-21T14:30:00Z"
23 }
24 ]
25}

Response fields

FieldTypeDescription
jobsarrayList of job objects
jobs[].jobRunIdstringUnique identifier for the job
jobs[].storageIdstringStorage where files are located
jobs[].inputFileNamestringName of the input file
jobs[].outputFileNamestringName of output file (when available)
jobs[].matchingTypestringType of matching performed
jobs[].overtureReleasestringOverture Maps release version used
jobs[].statusstringCurrent job status
jobs[].createdAtstringISO 8601 timestamp of job creation
jobs[].modifiedAtstringISO 8601 timestamp of last update

Job status values

StatusDescription
queuedJob is waiting to be processed
runningJob is currently being executed
finishedJob completed successfully
failedJob encountered an error
cancelledJob was cancelled by user

Error responses

HTTP StatusErrorCauseSolution
401UnauthorizedInvalid credentialsRefresh API key or token
403ForbiddenInsufficient permissionsCheck your access rights
500Internal Server ErrorServer-side issueRetry the request