Skip to main content

Overview

Download batch verification results as a file in CSV, TXT, or XLSX format.

GET /api/v1/tasks//download

Purpose: download batch verification results as a file. Access: Non-admins can only access their own batch verification tasks. Query parameters:
  • task_id (UUID, optional): overrides the batch verification task ID from the path.
  • format (string, optional): csv, txt, or xlsx (default csv).
Example request:
curl -L \
  'https://api.example.com/api/v1/tasks/550e8400-e29b-41d4-a716-446655440000/download?format=csv' \
  -o batch-verification-results.csv

Response

Status: 200 OK
  • Response body is a file download.
Errors:
  • 400 invalid ID or format.
  • 401 unauthorized.
  • 403 forbidden.
  • 404 batch verification task not found.
  • 500 internal error.