API Docs
Get the status of a batch
GET requests to the batch endpoint will get the current status of the batch verification job specified in the id parameter. You will need to check the updates of the API and check the status periodically.
HTTP Request
GET
https://gamalogic.com/batchstatus/
Parameters
Parameter | Required | Description |
apikey (string) | True | Your 32-char API key from the dashboard |
batchid (int) | True | The unique ID of the batch which was received from the above API request |
Status check API Result (JSON)
Parameter | Type | Description |
processed | integer | Number of email addresses processed |
error | Boolean | True if there is any error |
status | string | Displays the status of the batch like completed or processing |
total | integer | Total email address uploaded to verify |
Sample Response to a Batch status request
{
“error”: false,
“status”: “processing”,
“processed”: 50000,
“total”: 100000
}