1. Start Bulk Enhance Job
The first API call to make is Start Bulk Enhance Job. This endpoint allows a user to submit a batch of locations to Ping for enhancement. Example code:enhance_multiple_locations.py
Python output
2. Check Bulk Enhance Job Status
The second API call to make is Check Bulk Enhance Job Status. This endpoint allows a user to check the status of a previously submitted Bulk Enhance job using theid returned from the first step.
The user should poll this endpoint until the job status is either COMPLETE or FAILED.
Example code:
enhance_multiple_locations.py
Python output
3. Fetch Bulk Enhance Job Result Data
The third API call is Fetch Bulk Enhance Job Result Data. This endpoint allows a user to download the resultant file for a completed Bulk Enhance job using theid and filename returned from the previous step.
Example code:
enhance_multiple_locations.py
Python output
Python Demo
Download a ready-to-run Python demo of this workflow here: Download Python Script hereenhance_multiple_locations.py