CrowdStrike GetAlerts

CrowdStrike GetAlerts

Certified
Enterprise Edition

Fetch CrowdStrike Falcon alerts by composite ID

Fetches full alert details for a list of composite IDs, typically obtained from QueryAlerts.

yaml
type: io.kestra.plugin.ee.crowdstrike.alerts.GetAlerts

Fetch a known set of alerts and log their severity

yaml
id: get_alerts
namespace: company.team

tasks:
  - id: get_alerts
    type: io.kestra.plugin.ee.crowdstrike.alerts.GetAlerts
    clientId: "{{ secret('CROWDSTRIKE_CLIENT_ID') }}"
    clientSecret: "{{ secret('CROWDSTRIKE_CLIENT_SECRET') }}"
    ids:
      - "aid:ind:1700000000"
Properties

API client ID

Client ID of a CrowdStrike API client with the scopes required by the tasks and triggers being used.

API client secret

Client secret of the CrowdStrike API client. Exchanged for a short-lived OAuth2 Bearer token on every task run and trigger poll; never logged.

Defaulthttps://api.crowdstrike.com

CrowdStrike API base URL

Base URL of the CrowdStrike Falcon API for your cloud region (for example: https://api.crowdstrike.com for US-1, https://api.us-2.crowdstrike.com for US-2, https://api.eu-1.crowdstrike.com for EU-1, or https://api.laggar.gcw.crowdstrike.com for US-GOV-1). Defaults to the US-1 endpoint. Using the wrong region for your tenant results in 403 Forbidden responses.

SubTypestring

Composite IDs

Alert composite IDs to fetch.

Fetched alerts

Definitions
assigned_to_uidstring

UID of the analyst the alert is assigned to, if any.

composite_idstring

Composite ID of the alert, unique across products (for example aid: ind: timestamp).

created_timestampstring

UTC timestamp the alert was created, ISO-8601.

descriptionstring

Alert description.

deviceobject

Raw device object describing the host the alert originated from (fields vary by alert type).

namestring

Human-readable alert name.

severityinteger

Numeric severity from 1 (lowest) to 100 (highest).

statusstring

Current alert status: new, in_progress, closed, or reopened.

tagsarray
SubTypestring

Tags attached to the alert.

typestring

Alert type (for example ldt, xdr).

updated_timestampstring

UTC timestamp the alert was last updated, ISO-8601.