airbyte_get_job
Retrieve full details of a sync or reset job by its numeric ID, including status, duration, and volume metrics.
Instructions
Get full details of a single sync or reset job by its numeric ID.
Returns the job status, type, associated connection, start time, duration, and volume metrics (bytes and rows synced). Use this to inspect a specific job's outcome.
When to Use: - Check whether a specific job succeeded or failed. - Get precise bytes/rows synced for a particular run. - Inspect job duration for performance analysis. - Follow up on a job ID returned by airbyte_list_jobs.
When NOT to Use: - If you need to browse multiple jobs, use airbyte_list_jobs with filters. - To see the pipeline definition (schedule, streams), use airbyte_get_connection instead.
Returns: Job details including: jobId, jobType, status, connectionId, startTime, duration, bytesSynced, rowsSynced.
Markdown format renders a heading with bullet-point fields.
JSON format returns the full API response object.Examples: Get job by ID: params = { "job_id": "12345" } Get raw JSON: params = { "job_id": "12345", "response_format": "json" }
Error Handling: Returns a 404 message if the job ID does not exist.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |