SparrowDesk
BulkStatusJobid

Get bulk job status

Retrieve the processing status of a bulk contact creation job

GET
/bulk/status/{jobId}
AuthorizationBearer <token>

In: header

Path Parameters

jobIdstring

Response Body

application/json

application/json

application/json

curl -X GET "https://app.sparrowdesk.com/v1/bulk/status/string"
{
  "data": {
    "job_id": "bulk-123456789",
    "status": "completed",
    "total": 100,
    "processed": 100,
    "successful": 95,
    "failed": 5,
    "created_at": 1672531200,
    "completed_at": 1672531800
  }
}
{
  "error": {
    "message": "Job not found"
  }
}
{
  "error": {
    "message": "Error retrieving job status"
  }
}