Skip to main content
POST
/
api
/
v1
/
orgs
/
{orgId}
/
incidents
Create a manual incident
curl --request POST \
  --url https://monitor.aevr.space/api/v1/orgs/{orgId}/incidents \
  --header 'Content-Type: application/json' \
  --cookie auth-token= \
  --data '
{
  "monitorId": "<string>",
  "name": "<string>",
  "status": "investigating",
  "message": "<string>",
  "isPublic": true
}
'

Documentation Index

Fetch the complete documentation index at: https://monitor-f3599674.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

auth-token
string
cookie
required

Signed session cookie returned by the platform auth flows.

Path Parameters

orgId
string
required

Body

application/json
monitorId
string
name
string
status
enum<string>
Available options:
investigating,
identified,
monitoring,
resolved
message
string
isPublic
boolean

Response

200

Incident created