Skip to main content
POST
/
v1
/
alerts
/
{alert_uuid}
/
indicators
Add Indicators
curl --request POST \
  --url https://api.example.com/v1/alerts/{alert_uuid}/indicators \
  --header 'Content-Type: application/json' \
  --data '
{
  "indicators": [
    {
      "type": "ip",
      "value": "<string>"
    }
  ]
}
'
{
  "data": {
    "added_count": 123,
    "indicators": [
      {
        "uuid": "<string>",
        "type": "ip",
        "value": "<string>",
        "malice": "<string>",
        "first_seen": "2023-11-07T05:31:56Z",
        "last_seen": "2023-11-07T05:31:56Z",
        "is_enriched": true,
        "created_at": "2023-11-07T05:31:56Z",
        "updated_at": "2023-11-07T05:31:56Z",
        "malice_source": "<string>",
        "malice_overridden_at": "2023-11-07T05:31:56Z",
        "enrichment_results": {}
      }
    ],
    "enrich_requested": true
  },
  "meta": {}
}

Path Parameters

alert_uuid
string<uuid>
required

Query Parameters

enrich
boolean
default:true

Body

application/json

Request body for POST /v1/alerts/{uuid}/indicators.

indicators
IndicatorAddItem · object[]
required
Required array length: 1 - 100 elements

Response

Successful Response

data
IndicatorAddResponse · object
required

Response for POST /v1/alerts/{uuid}/indicators.

meta
Meta · object