Skip to main content

Overview

Check the current processing status for a file upload and the batch verification task created from it.

GET /api/v1/tasks/batch/uploads/

Purpose: fetch the current status of a file upload and its task. Path parameter:
  • upload_id (UUID)
Example request:

Response

Status: 200 OK Example response:
Response fields:
  • upload_id, task_id, filename, email_count, status.
  • user_id: owner of the upload (omitted for dev keys).
  • created_at, updated_at: upload timestamps.
  • task: task record created for this upload.
Errors:
  • 400 invalid UUID.
  • 401 unauthorized.
  • 403 forbidden.
  • 404 upload not found.
  • 500 internal error.