Skip to content

List open incidents of an organization

GET
/organizations/{org_id}/incidents
curl --request GET \
--url https://api.perstat.io/organizations/example/incidents \
--header 'Authorization: Bearer <token>'

Returns the currently open incidents of the organization, including status, severity, cause, affected regions, and start time. Monitor references are public monitor ids; manual incidents created without a monitor have no monitor reference. Requires membership. Accepts API keys.

org_id
required
string
Media typeapplication/json
Array<object>
object
cause
required
string
down_regions
required
Array<string>
id
required
string
monitor_id
required
string
monitor_name
string | null
project_name
string | null
region_count
required
integer format: int32
resolved_at_unix
integer | null format: int64
severity
required
string
started_at_unix
required
integer format: int64
status
required
string
Examplegenerated
[
{
"cause": "example",
"down_regions": [
"example"
],
"id": "example",
"monitor_id": "example",
"monitor_name": "example",
"project_name": "example",
"region_count": 1,
"resolved_at_unix": 1,
"severity": "example",
"started_at_unix": 1,
"status": "example"
}
]