Skip to main content
POST
/
jobs
/
comparison
/
details
curl -X POST "https://YOUR_BASE_URL/jobs/comparison/details" \
  -H "Authorization: Bearer <api-key>" \
  -H "Workspace-Id: <workspace-id>" \
  -H "Content-Type: application/json" \
  -d '[1042, 1043]'
{
  "data": [
    {
      "run_id": 1042,
      "comparison_id": "eeeeeeee-0000-0000-0000-000000000005",
      "comparison_name": "orders table comparison",
      "status": "SUCCESS",
      "failure_reason": null,
      "started_at": "2025-01-15T10:00:02Z",
      "finished_at": "2025-01-15T10:01:45Z",
      "result": {
        "diff_status": "MISMATCH",
        "diff_reasons": ["Row count mismatch", "Column value differences in total"],
        "time_taken": 103.2
      }
    }
  ],
  "meta": {}
}
Authorization
string
required
Bearer token. Format: Bearer <api-key>
Workspace-Id
string
required
Your workspace UUID.
job_ids
array
required
List of integer job IDs to fetch details for.

Response

data
array
List of job detail objects.
meta
object
Additional metadata.
curl -X POST "https://YOUR_BASE_URL/jobs/comparison/details" \
  -H "Authorization: Bearer <api-key>" \
  -H "Workspace-Id: <workspace-id>" \
  -H "Content-Type: application/json" \
  -d '[1042, 1043]'
{
  "data": [
    {
      "run_id": 1042,
      "comparison_id": "eeeeeeee-0000-0000-0000-000000000005",
      "comparison_name": "orders table comparison",
      "status": "SUCCESS",
      "failure_reason": null,
      "started_at": "2025-01-15T10:00:02Z",
      "finished_at": "2025-01-15T10:01:45Z",
      "result": {
        "diff_status": "MISMATCH",
        "diff_reasons": ["Row count mismatch", "Column value differences in total"],
        "time_taken": 103.2
      }
    }
  ],
  "meta": {}
}