Fetch Job Progress
GET/v1/dataset/index/job/progress/:index_id
Fetches latest job data by index id.
Request
Path Parameters
index_id Index Idrequired
Responses
- 200
- 422
Successful Response
- application/json
- Schema
- Example (from schema)
Schema
- MOD1
- MOD1
result Result (integer)required
Percentage of progress
job_start_timestamp
object
required
Job start timestamp
anyOf
string
job_end_timestamp
object
required
Job end timestamp
anyOf
string
index_build_stage Index Build Stage (string)required
Stage of progress
{
"result": 0,
"job_start_timestamp": "2024-07-29T15:51:28.071Z",
"job_end_timestamp": "2024-07-29T15:51:28.071Z",
"index_build_stage": "string"
}
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...