Inspect Scout incident
curl --request GET \
--url https://api.example.com/v1/api/servers/{serverId}/scout-alerts/incidents/{incidentId} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.example.com/v1/api/servers/{serverId}/scout-alerts/incidents/{incidentId}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.example.com/v1/api/servers/{serverId}/scout-alerts/incidents/{incidentId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/v1/api/servers/{serverId}/scout-alerts/incidents/{incidentId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/v1/api/servers/{serverId}/scout-alerts/incidents/{incidentId}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.example.com/v1/api/servers/{serverId}/scout-alerts/incidents/{incidentId}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v1/api/servers/{serverId}/scout-alerts/incidents/{incidentId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"incident": {
"id": "<string>",
"ruleId": "<string>",
"workspaceId": "<string>",
"serverId": "<string>",
"deployableId": "<string>",
"environment": "<string>",
"ruleRevision": "2023-11-07T05:31:56Z",
"ruleName": "<string>",
"severity": "<string>",
"condition": {
"metric": "cpuPercent",
"operator": "above",
"threshold": 123,
"windowSeconds": 123,
"aggregation": "average",
"http": {
"url": "<string>",
"method": "GET",
"intervalSeconds": 123,
"timeoutSeconds": 123,
"expectedStatusMin": 123,
"expectedStatusMax": 123,
"maxRedirects": 123
}
},
"openedAt": "2023-11-07T05:31:56Z",
"conditionStartedAt": "2023-11-07T05:31:56Z",
"resolvedAt": "2023-11-07T05:31:56Z",
"resolutionReason": "<string>",
"lastValue": 123,
"lastNotifiedAt": "2023-11-07T05:31:56Z",
"notificationSequence": 123
},
"entity": {
"id": "<string>",
"name": "<string>",
"kind": "<string>"
},
"history": {
"startAt": "<string>",
"endAt": "<string>",
"stepSeconds": 123,
"points": [
{
"at": "<string>",
"value": 123
}
],
"notes": [
"<string>"
],
"aggregation": "minimum"
},
"localization": {
"dateFormat": "day-short-month-year",
"timeFormat": "24-hour",
"timeZone": "<string>",
"timestamps": {}
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"requestId": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"requestId": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"requestId": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"requestId": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"requestId": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"requestId": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"requestId": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"requestId": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"requestId": "<string>"
}
}Inspect Scout incident
Inspect Scout incident through the Towbar REST API.
GET
/
servers
/
{serverId}
/
scout-alerts
/
incidents
/
{incidentId}
Inspect Scout incident
curl --request GET \
--url https://api.example.com/v1/api/servers/{serverId}/scout-alerts/incidents/{incidentId} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.example.com/v1/api/servers/{serverId}/scout-alerts/incidents/{incidentId}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.example.com/v1/api/servers/{serverId}/scout-alerts/incidents/{incidentId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/v1/api/servers/{serverId}/scout-alerts/incidents/{incidentId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/v1/api/servers/{serverId}/scout-alerts/incidents/{incidentId}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.example.com/v1/api/servers/{serverId}/scout-alerts/incidents/{incidentId}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v1/api/servers/{serverId}/scout-alerts/incidents/{incidentId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"incident": {
"id": "<string>",
"ruleId": "<string>",
"workspaceId": "<string>",
"serverId": "<string>",
"deployableId": "<string>",
"environment": "<string>",
"ruleRevision": "2023-11-07T05:31:56Z",
"ruleName": "<string>",
"severity": "<string>",
"condition": {
"metric": "cpuPercent",
"operator": "above",
"threshold": 123,
"windowSeconds": 123,
"aggregation": "average",
"http": {
"url": "<string>",
"method": "GET",
"intervalSeconds": 123,
"timeoutSeconds": 123,
"expectedStatusMin": 123,
"expectedStatusMax": 123,
"maxRedirects": 123
}
},
"openedAt": "2023-11-07T05:31:56Z",
"conditionStartedAt": "2023-11-07T05:31:56Z",
"resolvedAt": "2023-11-07T05:31:56Z",
"resolutionReason": "<string>",
"lastValue": 123,
"lastNotifiedAt": "2023-11-07T05:31:56Z",
"notificationSequence": 123
},
"entity": {
"id": "<string>",
"name": "<string>",
"kind": "<string>"
},
"history": {
"startAt": "<string>",
"endAt": "<string>",
"stepSeconds": 123,
"points": [
{
"at": "<string>",
"value": 123
}
],
"notes": [
"<string>"
],
"aggregation": "minimum"
},
"localization": {
"dateFormat": "day-short-month-year",
"timeFormat": "24-hour",
"timeZone": "<string>",
"timestamps": {}
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"requestId": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"requestId": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"requestId": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"requestId": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"requestId": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"requestId": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"requestId": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"requestId": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"requestId": "<string>"
}
}Required permissions: alert.read. Personal keys are capped by their owner’s current team role.
See request conventions and automation workflows. MCP clients use the task-oriented tool catalogue.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Pattern:
^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$Pattern:
^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$Response
Incident details and up to 361 metric points from the incident start through now, within retention. Includes chart limitations and the original alert condition.
Last modified on September 6, 2026
