Get-FalconBehavior
Search for behaviors associated with incidents. Required Permission:Incidents: Read
Syntax
Parameters
Behavior identifier(s). Can be provided via pipeline.Pattern:
^ind:[a-fA-F0-9]{32}:(\d|\-)+$Aliases: ids, behavior_idFalcon Query Language (FQL) expression to limit results.Must be a valid FQL statement.
Property and direction to sort results.Valid values:
timestamp.asc, timestamp.descMaximum number of results per request.Range: 1-500
Position to begin retrieving results (used for pagination).
Retrieve detailed information for behaviors.
Repeat requests until all available results are retrieved.
Display total result count instead of results.
Examples
Related Links
Get-FalconIncident
Search for incidents in the CrowdStrike Falcon platform. Required Permission:Incidents: Read
Syntax
Parameters
Incident identifier(s). Can be provided via pipeline.Pattern:
^inc:[a-fA-F0-9]{32}:[a-fA-F0-9]{32}$Aliases: ids, incident_idFalcon Query Language (FQL) expression to limit results.Must be a valid FQL statement.
Property and direction to sort results.Valid values:
assigned_to.asc, assigned_to.desc, assigned_to_name.asc, assigned_to_name.desc, end.asc, end.desc, modified_timestamp.asc, modified_timestamp.desc, name.asc, name.desc, sort_score.asc, sort_score.desc, start.asc, start.desc, state.asc, state.desc, status.asc, status.descMaximum number of results per request.Range: 1-500
Position to begin retrieving results (used for pagination).
Retrieve detailed information for incidents.
Repeat requests until all available results are retrieved.
Display total result count instead of results.
Examples
Related Links
Get-FalconScore
Search for CrowdScore values in the CrowdStrike Falcon platform. Required Permission:Incidents: Read
Syntax
Parameters
Falcon Query Language (FQL) expression to limit results.Must be a valid FQL statement.
Property and direction to sort results.Valid values:
score.asc, score.desc, timestamp.asc, timestamp.descMaximum number of results per request.Range: 1-2500
Position to begin retrieving results (used for pagination).
Repeat requests until all available results are retrieved.
Display total result count instead of results.
Examples
Related Links
Invoke-FalconIncidentAction
Perform actions on incidents in the CrowdStrike Falcon platform. Required Permission:Incidents: Write
Syntax
Parameters
Action to perform on the incident(s).Valid values:
add_tag- Add a tag to the incidentdelete_tag- Remove a tag from the incidentunassign- Unassign the incidentupdate_description- Update the incident descriptionupdate_name- Update the incident nameupdate_status- Update the incident statusupdate_assigned_to_v2- Assign incident to a user
Value for the chosen action (e.g., tag name, description text, user ID, status value).
One or more hashtables defining multiple name/value pairs for batch operations.Aliases:
action_parametersExample: @(@{name='add_tag'; value='investigated'}, @{name='update_status'; value='closed'})Update status of related ‘new’ detections when updating incident status.Aliases:
update_detectsReplace existing status for related detections when updating incident status.Aliases:
overwrite_detectsIncident identifier(s). Can be provided via pipeline.Pattern:
^inc:[a-fA-F0-9]{32}:[a-fA-F0-9]{32}$Aliases: ids, incident_idExamples
Notes
- Maximum of 1000 incident IDs can be processed per request
- When using
-Action, multiple operations can be performed in a single API call - The
-UpdateDetectsparameter automatically updates related detections when changing incident status - Use
-OverwriteDetectsto replace existing detection statuses instead of only updating ‘new’ detections