Batch Geocoder API Developer's Guide

Get job status

The user wants to obtain the current status of a job created by request. For information on how to make a request, see Geocoordinates for Multiple Addresses and Reverse Geocoding.

Request

The GET request below uses the the RequestID E2bc948zBsMCG4QclFKCq3tddWYCsE9g from an earlier request to retrieve that request's status. You need to use the RequestID from your own request.
https://batch.geocoder.ls.hereapi.com/6.2/jobs/
E2bc948zBsMCG4QclFKCq3tddWYCsE9g
?action=status
&apiKey={YOUR_API_KEY}
Note: This example uses a HERE API Key to authenticate your request. For the available authentication options, see the Identity & Access Management Developer Guide.

Response

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<ns2:SearchBatch>
  <Response>
    <MetaInfo>
      <RequestId>E2bc948zBsMCG4QclFKCq3tddWYCsE9g</RequestId>
    </MetaInfo>
    <Status>completed</Status>
    <JobStarted>2015-03-19T14:33:56.000Z</JobStarted>
    <JobFinished>2015-03-19T14:33:59.000Z</JobFinished>
    <TotalCount>5</TotalCount>
    <ValidCount>5</ValidCount>
    <InvalidCount>0</InvalidCount>
    <ProcessedCount>5</ProcessedCount>
    <PendingCount>0</PendingCount>
    <SuccessCount>5</SuccessCount>
    <ErrorCount>0</ErrorCount>
  </Response>
</ns2:SearchBatch>