Asynchronous Snap to Roads Status

Service version: 1
Last edit: 2022.12.19

Purpose

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

Run this endpoint

You can easily run this and other endpoints. Go to the TomTom API Explorer page and follow the directions.

Request data

HTTPS method: GET

For ease of viewing and identification:

  • 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.
get
URL request format
https://{baseURL}/snapToRoads/batch/{versionNumber}/{batchID}/status?key={Your_API_Key}
get
URL request example
https://api.tomtom.com/snapToRoads/batch/1/b4086eb3-dead-beef-afbf-cc521fe1d9d8/status?key={Your_API_Key}
get
curl command request example
curl -X GET 'https://api.tomtom.com/snapToRoads/batch/1/b4086eb3-dead-beef-afbf-cc521fe1d9d8/status?key={Your_API_Key}'

Request parameters

The following table describes the parameters that can be used in a request.

  • Required parameters must be used or the call will fail.
  • Parameters and values are case-sensitive.
  • Optional parameters may be used.

Note: There are no optional parameters in this endpoint.

Required parametersDescription

baseURL
string

The base URL for calling TomTom services.
Value: api.tomtom.com

versionNumber
string

The version of the service to call.
Value: The current value is 1.

batchID
string

A unique batch id is available inside the body of a successful Asynchronous Snap To Roads Status response.

key
string

The authorization key for access to the API.
Value: Your valid API Key.

HTTP request headers

The following table lists HTTP request headers of particular interest to clients of the Asynchronous Snap to Roads Status endpoint.

Note: There are no required headers in this endpoint.

Optional headersDescription

Accept-Encoding

Contains the content encoding (usually a compression algorithm), that the client is able to understand.
Value: gzip

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 a 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: <string>

Response data

Snap To Roads Status response schema

Exclamation mark ! means that the field is not nullable. For example:

  • String! - is non-nullable
  • [String!] - list of non-null objects
  • [String]! - list cannot be null, but it can contain null values
Response schema with exclamation mark ( ! ) example
1type BatchResponse {
2 state: BatchStatus
3 statistics: BatchStatusStatistics!
4}
5
6enum BatchStatus {
7 Submitted
8 Completed
9}
10
11type BatchStatistics {
12 successes: Int!
13 totalCount: Int!
14}

Response field structure

The following tables describe JSON element fields that can appear in a response.

Structure of the BatchResponse object
FieldDescription

state
BatchStatus

Indicates the current status of the Asynchronous Snap To Roads Status request.

statistics
BatchStatusStatistics

Contains statistics of the Asynchronous Snap To Roads Status request.

Structure of the BatchStatus object
FieldDescription

Submitted
string

Indicates that processing is not complete.

Completed
array

Indicates that processing is complete.
Structure of the BatchStatusStatistics object
FieldDescription

successes
integer

Number of successfully processed queries.

totalCount
integer

Number of submitted queries.

Successful response

For a valid Asynchronous Snap To Roads Status request, the endpoint returns its response body in JSON format.

Successful response example - JSON
1{
2"state": "Completed",
3 "statistics": {
4 "totalCount": 1,
5 "successes": 1
6}
7}

Error response

The Asynchronous Snap to Roads Status endpoint, for an invalid single request, returns a response body in JSON format.

Error response example - JSON
1{
2 "detailedError": {
3 "code": "INVALID_REQUEST",
4 "message": "Batch not found."
5 }
6}
FieldDescription

detailedError
object

Main object of the error response.

code
string

One of a server-defined set of error codes.

message
string

A human-readable description of the error code.

HTTP response codes

CodeMeaning & possible causes

200

OK

400

Bad request

403

Forbidden: The supplied API Key is not valid for this request.

405

Method Not Allowed: The provided HTTP request method is known by the server, but is not supported by the target resource.

429

Too Many Requests: Too many requests were sent in a given amount of time for the supplied API Key.

500

Internal Server Error

503

Service currently unavailable: The service is currently unavailable.

596

Service Not Found: Unknown version of the service.

HTTP response headers

The following data table lists HTTP response headers of particular interest to clients of the Asynchronous Snap to Roads Status endpoint.

HeaderDescription

Access-Control-Allow-Origin

Indicates that cross-origin resource sharing (CORS) is allowed.
Value: *

Allow

Lists the set of supported HTTP methods. The header is sent in case a 405 HTTP response code is returned.
Value: GET, HEAD, POST

Content-Encoding

Indicates which encodings were applied to the response body.
Value: gzip

Content-Length

Contains information about the size of the response body.
Value: <decimal number>

Content-Type

Indicates the media type of the resource returned.
Value: <application/json; charset=utf-8>

Date

Contains the date and time at which the message was originated. For details check RFC 7231.
Value: <http-date>

Tracking-ID

An identifier for the request.

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

  • Otherwise, it is generated automatically by the service. For details check RFC 4122.

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

Value: <string>