Service Outages
The Bearer API key of your user more info.
the id of the service for which the outages should be fetched
from date, ISO-UTC e.g. 2021-05-25T21:24:56.771Z
until date, ISO-UTC e.g. 2021-05-26T21:24:56.771Z
if the outages should not take overrides into account, default is false
The outages of the service
GET /api/service-outages HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
The outages of the service
[
{
"status": "OPERATIONAL",
"from": "2025-11-17T03:22:00.016Z",
"until": "2025-11-17T03:22:00.016Z"
}
]The Bearer API key of your user more info.
the id of the service for which the overrides should be fetched
from date, ISO-UTC e.g. 2021-05-25T21:24:56.771Z
until date, ISO-UTC e.g. 2021-05-26T21:24:56.771Z
The overrides of the service
GET /api/service-outages/overrides HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
The overrides of the service
[
{
"id": "text",
"service": {
"id": 1,
"name": "text",
"status": "OPERATIONAL",
"description": "text",
"oneOpenIncidentOnly": true,
"showUptimeHistory": true,
"teams": [
{
"id": 1,
"name": "text"
}
]
},
"status": "OPERATIONAL",
"from": "2025-11-17T03:22:00.016Z",
"until": "2025-11-17T03:22:00.016Z"
}
]The Bearer API key of your user more info.
the service status
The added override
POST /api/service-outages/overrides HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 267
{
"id": "text",
"service": {
"id": 1,
"name": "text",
"status": "OPERATIONAL",
"description": "text",
"oneOpenIncidentOnly": true,
"showUptimeHistory": true,
"teams": [
{
"id": 1,
"name": "text"
}
]
},
"status": "OPERATIONAL",
"from": "2025-11-17T03:22:00.016Z",
"until": "2025-11-17T03:22:00.016Z"
}The added override
{
"id": "text",
"service": {
"id": 1,
"name": "text",
"status": "OPERATIONAL",
"description": "text",
"oneOpenIncidentOnly": true,
"showUptimeHistory": true,
"teams": [
{
"id": 1,
"name": "text"
}
]
},
"status": "OPERATIONAL",
"from": "2025-11-17T03:22:00.016Z",
"until": "2025-11-17T03:22:00.016Z"
}The Bearer API key of your user more info.
entity ID
The override
GET /api/service-outages/overrides/{id} HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
The override
{
"id": "text",
"service": {
"id": 1,
"name": "text",
"status": "OPERATIONAL",
"description": "text",
"oneOpenIncidentOnly": true,
"showUptimeHistory": true,
"teams": [
{
"id": 1,
"name": "text"
}
]
},
"status": "OPERATIONAL",
"from": "2025-11-17T03:22:00.016Z",
"until": "2025-11-17T03:22:00.016Z"
}The Bearer API key of your user more info.
entity ID
the service status
The updated override
PUT /api/service-outages/overrides/{id} HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 267
{
"id": "text",
"service": {
"id": 1,
"name": "text",
"status": "OPERATIONAL",
"description": "text",
"oneOpenIncidentOnly": true,
"showUptimeHistory": true,
"teams": [
{
"id": 1,
"name": "text"
}
]
},
"status": "OPERATIONAL",
"from": "2025-11-17T03:22:00.016Z",
"until": "2025-11-17T03:22:00.016Z"
}The updated override
{
"id": "text",
"service": {
"id": 1,
"name": "text",
"status": "OPERATIONAL",
"description": "text",
"oneOpenIncidentOnly": true,
"showUptimeHistory": true,
"teams": [
{
"id": 1,
"name": "text"
}
]
},
"status": "OPERATIONAL",
"from": "2025-11-17T03:22:00.016Z",
"until": "2025-11-17T03:22:00.016Z"
}The Bearer API key of your user more info.
entity ID
the response
DELETE /api/service-outages/overrides/{id} HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
the response
No content
Last updated
Was this helpful?