POST
/
firework
/
v4
/
events
/
actions
curl --request POST \
  --url https://api.flare.io/firework/v4/events/actions \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "action": {
    "type": "<string>"
  },
  "targets": [
    {
      "uid": "<string>"
    }
  ]
}'

Apply an action to a list of events (ignore, remediate, etc.).

Body parameters

action
object
required

The action applied to events.

type
string

ignore remediate unignore unremediate

targets
object[]
required

List of targets where the action will be applied (max 10).

uid
string