Appearance
GET
/job/job-execution-exclusion/exclusions/{id}Required scope:
viskan:jobexecutionexclusion:readGet a job execution exclusion by its unique identifier, including its intervals.
Parameters
Path parameters
id integerThe unique identifier of the exclusion.
Response
The response contains the exclusion.
JSON
{
"id": 1,
"name": "Christmas freeze",
"intervals": [
{
"intervalId": 1,
"startDateTime": "2026-12-24T00:00:00+01:00",
"endDateTime": "2026-12-26T23:59:59+01:00"
}
],
"jobs": [
{
"id": 1,
"name": "Process order cancellations",
"active": true
}
]
}
| Error code | Description |
|---|---|
exclusion-not-found | The exclusion with the given ID was not found. |