Check Export Job Status

Endpoint: GET /api/v1/analytics/exports/jobs/{job_id} This endpoint returns the status and details of a specific export job, including download links if available.

Path Parameters

NameTypeDescription
job_idstringThe unique identifier for the export job

Response

  • 200 OK: Returns job status and details
  • 401 Unauthorized: Invalid API key
  • 404 Not Found: Export job not found

Example Response

{
  "job_id": "export:jobs:xyz789",
  "status": "completed",
  "start_time": "2024-06-01T12:00:00Z",
  "end_time": "2024-06-01T12:10:00Z",
  "presigned_urls": [
    { "filename": "export-part1.csv", "url": "https://..." }
  ]
}