Skip to main content
POST
/
v1
/
ingest
/
events
Ingest Single Event
curl --request POST \
  --url https://api.example.com/v1/ingest/events \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "source": "custom_api",
  "external_id": "<string>",
  "title": "<string>",
  "body": "",
  "severity": "p3",
  "external_url": "<string>",
  "metadata": {}
}
'
{}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Single raw signal push.

source
string
default:custom_api
external_id
string | null
title
string | null
body
string
default:""
severity
enum<string>
default:p3
Available options:
p1,
p2,
p3,
p4
external_url
string | null
metadata
Metadata · object

Response

Successful Response

The response is of type Response Ingest Single Event V1 Ingest Events Post · object.