Batch-Job zurücksetzen
Zum Zurücksetzen eines Jobs muss man folgende Adresse mit der entsprechenden RequestId oder dem Batch-Job-Namen aufrufen:
action=reset
Bsp.:
https://maps1.locr.com/batch-processing/job.php?action=reset&name=<jobname>
Optionaler Parameter:
todos=<parameter>
geocoding - Setzt den Batch-Job auf Anfangszustand
routing - Entfernt alle Routings und alle bisher erzeugten Karten
map_creation - Löscht alle erzeugten Karten
Bsp.:
https://maps1.locr.com/batch-processing/job_v2.php?action=reset&name=<jobname>&to_dos=geocoding
https://maps1.locr.com/batch-processing/job_v2.php?action=reset&name=<jobname>&to_dos=routing
https://maps1.locr.com/batch-processing/job_v2.php?action=reset&name=<jobname>&to_dos=map_creation
Beispielrückgabe beim Zurücksetzen eines Jobs:
<?xml version="1.0" encoding="utf-8"?>
<BatchProcessing>
<Response>
<MetaInfo>
<RequestId>4fec2eb23a16880b77000000</RequestId>
<Name>jobname</Name>
<Created>2012-06-01 12:00:00</Created>
</MetaInfo>
<Status>resetted</Status>
<Geocoding>
<Customers>
<TotalCount>1</TotalCount>
<ProcessedCount>0</ProcessedCount>
<ValidCount>0</ValidCount>
<InvalidCount>0</InvalidCount>
</Customers>
<Shops>
<TotalCount>1</TotalCount>
<ProcessedCount>0</ProcessedCount>
<ValidCount>0</ValidCount>
<InvalidCount>0</InvalidCount>
</Shops>
</Geocoding>
<Routing>
<TotalCount>0</TotalCount>
<ProcessedCount>0</ProcessedCount>
<ValidCount>0</ValidCount>
<InvalidCount>0</InvalidCount>
</Routing>
<Maps>
<TotalCount>1</TotalCount>
<ProcessedCount>0</ProcessedCount>
<ValidCount>0</ValidCount>
<Invalid>0</Invalid>
</Maps>
</Response>
</BatchProcessing>