Construct a HERE Batch API v7 request
A typical request to the HERE Batch API v7 includes a base path, a resource and resource-specific parameters or data.
If you are authorized for the service, you can fetch the base path from Lookup API.
The value will be something like https://batch.search.hereapi.com/v7.
Possible resources are:
| Element | Value/Example | Description |
|---|---|---|
| API | /batch | Base resource for all API calls |
| Open API | /openapi | OpenAPI v3 documentation in JSON or YAML format |
| Swagger UI | /swagger-ui | Swagger UI to render API spec. |
| Version | /version | Deployed version of the service |
Request encoding
Encode all query parameters in UTF-8, defining all special characters using a %FF hexadecimal representation. For example, "inputDelimiter=%5Ct" for "inputDelimiter=\t" and "inputDelimiter=%7C" for "inputDelimiter=|".
Updated this month