GET v1/bunits/{bunitId}/jobincidentconfig
Get the default status report delivery config of the business unit
If none exists an inherited config will be found
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
bunitId |
ID of the business unit the config is related to | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
The requested config
JobIncidentConfigName | Description | Type | Additional information |
---|---|---|---|
Subject |
The subsject of the mail to send |
string |
None. |
Message |
The message included in the body of the mail to send |
string |
None. |
Inherited |
Whether configuration is inherited from an ancestor business unit. |
boolean |
None. |
IncludeStatusOk |
boolean |
None. |
|
IncludeStatusWarning |
boolean |
None. |
|
IncludeStatusError |
boolean |
None. |
|
StatusWarningLimit |
Amount of days the consumption unit can have jobs with warnings or errors Incident mails will no be sent until this limit is reached |
integer |
None. |
StatusErrorLimit |
Amount of days the consumption unit can have jobs with errors Incident mails will no be sent until this limit is reached |
integer |
None. |
StatusNotOkLimit |
integer |
None. |
|
Id |
A unique ID for the object. |
integer |
Read-only. |
CreatedDate |
Time and date the object was created. |
date |
Read-only. |
ArchivedDate |
Time and date the object was or is going to be archived. Unarchived objects have no value in ArchivedDate |
date |
Read-only. |
Response Formats
application/json
Sample:
Sample not available.
text/json
Sample:
Sample not available.
application/xml, text/xml
Sample:
<JobIncidentConfig xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Id>10</Id> <CreatedDate>2024-09-14T18:45:03.5065476+02:00</CreatedDate> <ArchivedDate>2024-09-14T18:45:03.5065476+02:00</ArchivedDate> <Subject>sample string 1</Subject> <Message>sample string 2</Message> <Inherited>true</Inherited> <IncludeStatusOk>true</IncludeStatusOk> <IncludeStatusWarning>true</IncludeStatusWarning> <IncludeStatusError>true</IncludeStatusError> <StatusWarningLimit>7</StatusWarningLimit> <StatusErrorLimit>8</StatusErrorLimit> <StatusNotOkLimit>9</StatusNotOkLimit> </JobIncidentConfig>