Skip to main content
PUT
/
ignore_event
Ignore event
curl --request PUT \
  --url https://yourdomain.com/ignore_event \
  --header 'Content-Type: application/json' \
  --cookie admin_cookie= \
  --data '
{
  "campaign": "<string>",
  "timestamp": "<string>",
  "event_type": "<string>",
  "source": "<string>",
  "target": "<string>",
  "data": "<string>"
}
'
"event updated"

Authorizations

Admin cookie authentication (configurable in config.json)

Body

application/json
campaign
string

Campaign name

timestamp
string

Event timestamp

event_type
string

Event type

source
string

Source IP

target
string

Target ID

data
string

Event data

Response

Event ignored successfully

The response is of type string.

Example:

"event updated"