Get Status by Pipeline Token
| Parameter | Type | Required | Description |
|---|---|---|---|
pipelinetoken | query | Yes* | Pipeline token from upload response |
200 OK - an array of status entries, one per processing stage:
Get Status by Pipeline Name
| Parameter | Type | Required | Description |
|---|---|---|---|
pipelinename | query | Yes* | Pipeline name |
page | query | No | Page number (default: 1) |
200 OK - an array of job summaries:
*Use either
pipelinetoken or pipelinename, not both.
Status Fields
Each status entry (PipelineStatus) contains:
| Field | Description |
|---|---|
id | Entry index (internal) |
dateTime | Human-readable timestamp |
pipeline | Pipeline name |
processName | Processing stage name (see below) |
publisherToken | Publisher identifier (if provided on upload) |
pipelineToken | Pipeline job token |
filename | Source filename |
state | Stage state: begin, processing, end, or error |
code | Same as state |
description | Detail message |
epoch | Unix epoch milliseconds |
State Values
| State | Description |
|---|---|
begin | Processing stage started |
processing | In progress with detail message |
end | Processing stage completed |
error | Processing stage failed |
Process Names
| Process | Description |
|---|---|
FileNotifier | File intake from MinIO bucket |
StreamNotifier | Direct upload intake |
DataQuality | Data quality validation |
Transformation | Data transformation |
JobRunner | Destination orchestration |
PostgresLoader | PostgreSQL loading |
MongoDBLoader | MongoDB loading |
SparkObjectStoreLoader | Object store writing |
KafkaLoader | Kafka producing |
ActiveMQLoader | ActiveMQ queue writing |
RestEndpointRunner | REST endpoint posting |