New

Create incident

post

Creates a new incident on a status page

Path parameters
statusPageIdstringRequired

Status Page ID

Header parameters
x-api-keystringRequired

API Key for authentication

Body
titlestringRequired

Incident title

descstringRequired

Incident description

severitystring · enumRequired

Incident severity

Possible values:
notifybooleanOptional

Whether to notify subscribers

identifiedAtTimestringOptional

Time when incident was identified (HH:mm)

identifiedAtstringOptional

Date when incident was identified (DD/MM/YYYY)

Responses
200
Incident created successfully
post
POST /api/status-page/{statusPageId}/incident/new HTTP/1.1
Host: api.spike.sh
x-api-key: text
Content-Type: application/json
Accept: */*
Content-Length: 174

{
  "title": "text",
  "desc": "text",
  "severity": "operational",
  "componentStatus": [
    {
      "id": "text",
      "status": "operational"
    }
  ],
  "notify": true,
  "identifiedAtTime": "text",
  "identifiedAt": "text"
}

No content

Last updated

Was this helpful?