Skip to main content
POST
/
incidents
Create incident
curl --request POST \
  --url https://api.ipulse.one/incidents \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "title": "Website down"
}
'

Authorizations

Authorization
string
header
required

JWT Bearer token authentication

Body

application/json
title
string
required
Example:

"Website down"

description
string
Example:

"The main website is not responding"

severity
enum<string>
default:medium
Available options:
low,
medium,
high,
critical
affected_domains
string[]
affected_services
string[]

Response

201

Incident created successfully