Chapter 5.3.8 - Geo Batch Status

Geo Batch Status

The GeoBatchStatus object contains the Geo Batch Status information for an uploaded Geo Batch file:

Key Value
ProcessId [int] Process Id for Geo Batch file
RequestDate [datetime] Request Date
ProcessingStart [timestamp] Processing Start
ProcessingEnd [datetime] Processing End
Status [string] Status of the Geo Batch file
Indicates the status of the Geo Batch file
  • Pending: File is in queue but has not begun processing
  • Initialized: File has been initialized and processing is about to begin
  • Running: File is being processed
  • Completed: File has been processed successfully and results returned
  • Warnings: File has been processed but warnings have been caught. Check the Geo Batch Log for details
  • Errors: File has been processed but errors have been caught. Check the Geo Batch Log for details
Downloads [GeoBatchDownloadResponse] Geo Batch Download Response
Contains download information about the input and output files
err [Error] Error
Contains information about any errors returned (as applicable)

Example

{
"ProcessId": 999999,
"RequestDate": "2019-10-23T15:17:01.76",
"ProcessingStart": "2019-10-23T15:17:06.383",
"ProcessingEnd": "2019-10-23T15:17:06.837",
"Status": "Completed",
"Downloads": {
// Geo Batch Download Response
}
}