Query parameters
-
id
string Required Job id
GET
/job/detail
curl \
-X GET http://localhost:8080/job/detail?id=52a5cb79-7556-4c52-8e6f-dd6aaf1bc4c8
Response examples (400)
{
"error": "string"
}
Response examples (400)
{
"error": "string"
}
Response examples (default)
{
"canceled": true,
"completed": true,
"created": "2023-05-04T09:42:00+00:00",
"end": "2023-05-04T09:42:00+00:00",
"errored": true,
"id": "string",
"lastError": "string",
"pipeline": "my_pipeline",
"start": "2023-05-04T09:42:00+00:00",
"tasks": [
{
"dependsOn": [
"string"
],
"end": "2023-05-04T09:42:00+00:00",
"error": "string",
"errored": true,
"exitCode": 42,
"name": "task_name",
"skipped": true,
"start": "2023-05-04T09:42:00+00:00",
"status": "waiting"
}
],
"user": "j.doe",
"variables": {
"tags": [
"foo",
"bar"
]
}
}
Response examples (default)
{
"canceled": true,
"completed": true,
"created": "2025-05-04T09:42:00Z",
"end": "2025-05-04T09:42:00Z",
"errored": true,
"id": "string",
"lastError": "string",
"pipeline": "my_pipeline",
"start": "2025-05-04T09:42:00Z",
"tasks": [
{
"dependsOn": [
"string"
],
"end": "2025-05-04T09:42:00Z",
"error": "string",
"errored": true,
"exitCode": 42,
"name": "task_name",
"skipped": true,
"start": "2025-05-04T09:42:00Z",
"status": "waiting"
}
],
"user": "j.doe",
"variables": {
"tags": [
"foo",
"bar"
]
}
}