# Chapter 5.3.8 - Geo Batch Status

Source: https://developer.avalara.com/products/communications/integration-guides/dev-guide_rest_v2/reference/geo-batch-status/

-   [Previous](/communications/dev-guide_rest_v2/reference/geo-batch-submit-file-response/)
-   [Next](/communications/dev-guide_rest_v2/reference/geo-batch-download-response/)

### 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](/communications/dev-guide_rest_v2/reference/geo-batch-log/) for details
-   `Errors`: File has been processed but errors have been caught. Check the [Geo Batch Log](/communications/dev-guide_rest_v2/reference/geo-batch-log/) for details

`Downloads`

[`[GeoBatchDownloadResponse]`](/communications/dev-guide_rest_v2/reference/geo-batch-download-response/) Geo Batch Download Response  

Contains download information about the input and output files  

`err`

[`[Error]`](/communications/dev-guide_rest_v2/reference/error-response/) Error  

Contains information about any errors returned (as applicable)  

### Example

```json
{ "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 }}
```

-   [Previous](/communications/dev-guide_rest_v2/reference/geo-batch-submit-file-response/)
-   [Next](/communications/dev-guide_rest_v2/reference/geo-batch-download-response/)