HERE Batch API v7 endpoints
Batch geocoder request endpoints
| URL Request | Description | HTTP Method |
|---|---|---|
| /jobs | Returns the details of multiple jobs | GET |
| Creates a batch job • Returns a Job id The HTTP Body of the request contains the data to be geocoded. | POST | |
| Deletes multiple or all jobs | DELETE | |
| /jobs/<jobId> | Returns the details of the batch job. | GET |
| Deletes the batch job. | DELETE | |
| /jobs/<jobId>/start | Starts the batch job. | PUT |
| /jobs/<jobId>/stop | Stops the batch job. | PUT |
| /jobs/<jobId>/results | Fetches results of the job as a downloadable stream of data. The result file contains all geocoded results, formatted according to the output format descriptor provided during creation. Errors are not included. | GET |
| /jobs/<jobId>/errors | Fetches the errors of the job as a downloadable stream of data. Each line contains a reference to the input line and error details from the backend service | GET |
| /notifications | Return all notifications. | GET |
| Create a new notification. | POST | |
| /notifications/<notificationId> | Get the notification with defined ID. | GET |
| Replace the notification with defined ID. | PUT | |
| Delete the notification with defined ID. | DELETE | |
| /notifications/<notificationId>/test | Test the notification with defined ID. | GET |
| /health | Tests the basic health of the service. | GET |
| /openapi | Retrieves the YAML variant of the OpenAPI v3 specification. | GET |
| /version | Retrieves API version information. | GET |
Updated last month