Get Pipeline Job
GET/api/v1/pipelines/:pipeline_id/jobs/:job_id
Get a job for a pipeline.
Request
Path Parameters
job_id uuidrequired
pipeline_id uuidrequired
Cookie Parameters
session any
Responses
- 200
- 422
Successful Response
- application/json
- Schema
- Example (from schema)
Schema
- MOD1
- MOD1
- MOD1
- MOD1
id uuidrequired
Unique identifier
created_at
object
Creation datetime
anyOf
string
updated_at
object
Update datetime
anyOf
string
status ManagedIngestionStatus (string)required
Status of the pipeline deployment.
Possible values: [NOT_STARTED
, IN_PROGRESS
, SUCCESS
, ERROR
, PARTIAL_SUCCESS
]
started_at
object
Time the pipeline deployment started.
anyOf
string
ended_at
object
Time the pipeline deployment finished.
anyOf
string
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"created_at": "2024-07-29T15:51:28.071Z",
"updated_at": "2024-07-29T15:51:28.071Z",
"status": "NOT_STARTED",
"started_at": "2024-07-29T15:51:28.071Z",
"ended_at": "2024-07-29T15:51:28.071Z"
}
Validation Error
- application/json
- Schema
- Example (from schema)
Schema
Array [
Array [
- MOD1
- MOD2
]
]
detail
object[]
loc
object[]
required
anyOf
string
integer
msg Message (string)required
type Error Type (string)required
{
"detail": [
{
"loc": [
"string",
0
],
"msg": "string",
"type": "string"
}
]
}
Loading...