Get Blackout Windows List
Get All Blackout Windows
Query Parameters
- showOnlyCommcellLevel boolean
Shows blackout window at commcell level if set to true.
- companyId integer
Shows blackout windows associated with the company whose id has been provided.
- serverGroupId string
Shows blackout windows associated with the server group whose id has been provided.
- commcellId string
Shows blackout windows associated with the commcell whose id has been provided.
- 200
- 404
Success
- application/json
- Schema
- Example (from schema)
Schema
blackoutWindows object[]
Returns a summary of all blackout windows
id int32blackout window Id
name stringblackout window name
company object
id int32name stringdays string[]Possible values: [
SUNDAY
,MONDAY
,TUESDAY
,WEDNESDAY
,THURSDAY
,FRIDAY
,SATURDAY
]Days of the week on which the black out window will be in effect.
betweenDates object
start int64the blackout window comes into effect at this point.
end int64the blackout window is no longer in effect from this point on.
time object[]
Refers to the time between which the blackout window will be in effect. It has to be provided in seconds.
start int64the blackout window comes into effect at this point.
end int64the blackout window is no longer in effect from this point on.
{
"blackoutWindows": [
{
"id": 0,
"name": "string",
"company": {
"id": 0,
"name": "string"
},
"days": [
"SUNDAY"
],
"betweenDates": {
"start": 0,
"end": 0
},
"time": [
{
"start": 0,
"end": 0
}
]
}
]
}
Requested Details not found