SnapReport
GET/api/v1/snapreport/jobs/:jobId

Poll the status of an async SnapReport analyze job.

Authentication

Any valid key scoped to the same organization that created the job. See Authentication.

Code examples

curl https://api.myqateam.com/api/v1/snapreport/jobs/<job-id> \
-H "Authorization: Bearer myqa_..."

Response — processing

json
{
"job_id": "…",
"status": "processing",
"created_at": "2026-04-19T12:00:00Z"
}

Response — completed

json
{
"job_id": "…",
"status": "completed",
"created_at": "…",
"completed_at": "…",
"data": { /* same shape as the sync analyze response */ }
}

Response — failed

json
{
"job_id": "…",
"status": "failed",
"error": { "code": "PROCESSING_ERROR", "message": "..." },
"completed_at": "..."
}