Skip to main content
POST
/
security
/
incidents
Create an ICT incident
curl --request POST \
  --url https://api.getovra.com/security/incidents \
  --header 'Content-Type: application/json' \
  --header 'X-Dashboard-Secret: <x-dashboard-secret>' \
  --data '
{
  "title": "<string>",
  "description": "<string>",
  "ownerId": "<string>",
  "detectedAt": "2023-11-07T05:31:56Z",
  "affectedUsersCount": 1,
  "affectedGeographies": [
    "<string>"
  ],
  "actorUserId": "<string>",
  "notificationChannel": "<string>",
  "externalTicketUrl": "<string>"
}
'
{
  "error": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.getovra.com/llms.txt

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

Headers

X-Dashboard-Secret
string
required

Body

application/json
title
string
required
Required string length: 1 - 200
description
string
required
Required string length: 1 - 8000
severity
enum<string>
required
Available options:
low,
medium,
high,
critical
category
enum<string>
required
Available options:
ict_outage,
data_breach,
fraud,
auth_compromise,
third_party,
other
ownerId
string | null
detectedAt
string<date-time>
affectedUsersCount
integer | null
Required range: x >= 0
affectedGeographies
string[]
Maximum array length: 50
Required string length: 2
actorUserId
string | null
notificationChannel
string | null
externalTicketUrl
string<uri> | null

Response

Incident recorded