GET /public/v1/bulk/status/{job_id}
This endpoint allows you to check the current status of a previously submitted bulk enrichment job using its job_id. It returns information about the job’s processing state and progress.
Authorization
Header:X-API-Key: <your_api_key>
API key must be generated from your account at dashboard.powerlead.com.
Path Parameters
job_id(string) required
The unique identifier of the enrichment job you want to check.
Success Response
HTTP 200 OKtask_id: The job ID.status: One ofqueued,processing,completed, orfailed.records: Total number of records in the job.created_at: Timestamp of when the job was created.completed_at: Timestamp of job completion ornullif not yet completed.
Error Responses
HTTP 422 Unprocessable Entity – Invalidjob_id or malformed request.
Notes
- Use this endpoint to periodically poll job status.
- Once the status is
completed, use theGET /public/v1/bulk/result/{job_id}endpoint to retrieve results.