Appearance
GET
/job/job-history/entries/{id}Required scope:
viskan:jobconfig:readGets a job history entry by its identifier, including translated messages.
Parameters
Path parameters
id integerThe unique identifier of the history entry.
Response
The response contains the history entry.
JSON
{
"jobHistoryId": 12345,
"jobConfigName": "...",
"status": "...",
"acknowledged": true,
"startTime": "...",
"duration": 12345,
"interactive": true,
"firedOn": "...",
"scheduledFireTime": "...",
"actualFireTime": "...",
"executedOn": "...",
"executedBy": "...",
"messages": [
{
"severity": "INFO",
"description": "..."
}
]
}
| Error code | Description |
|---|---|
history-not-found | The history entry was not found. |