Menu
HomeVisit Gamalogic.comGitHub
Skip to Content
EmailsGet the Status of a Batch

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/

Code Examples

cURL
curl "https://gamalogic.com/batchstatus/?apikey=your_api_key&batchid=your_batch_id"
Note: Make sure to replace your_api_key with your API key.

Parameters

ParameterRequiredTypeDescription
apikeytruestringYour 32-char API key from the dashboard
batchidtrueintThe unique ID of the batch which was received from the above API request

Status check API Result (JSON)

AttributeTypeDescription
processedintegerNumber of email addresses processed
errorbooleanTrue if there is any error
statusstringDisplays the status of the batch like completed or processing
total integerTotal email address uploaded to verify
{ "error": false, "status": "processing", "processed": 50000, "total": 100000 }
Last updated on