Skip to main content
GET
Get pipeline run details and status

Authorizations

Authorization
string
header
required

Use Authorization: Bearer

Path Parameters

project_id
string<uuid>
required

UUID of the project

pipeline_run_id
string<uuid>
required

UUID of the pipeline run

Response

Pipeline run details

Full pipeline run payload returned by the detail endpoint.

id
string<uuid>
created_at
string<date-time>
updated_at
string<date-time>
status
enum<string>

Lifecycle status of a pipeline run or step:

  • pending — queued, not yet started
  • running — currently executing
  • completed — finished successfully
  • completed_with_warnings — finished, but some steps emitted warnings
  • failed — terminated with an error
  • aborted — cancelled via the abort action
Available options:
pending,
running,
completed,
completed_with_warnings,
failed,
aborted
project
string<uuid>
pipeline_name
string
mode
string

Run mode (e.g. recreate-all, recreate-single, upsert-single, upsert-all).

celery_task_id
string
user
string<uuid> | null

ID of the user who triggered the run.

tables
object | null

Map of table name → table version UUID for the run.

steps
object[]
document_ids
string<uuid>[] | null

UUIDs of documents this run targets.

chunk_ids
string<uuid>[] | null

UUIDs of chunks this run targets.

raw_logs
string

Concatenated logs produced during execution.