Initiate a new endpoint script execution action using provided snippet code. Cortex XDR supports sending your request in Base64.
Required license: Cortex XDR Pro per Endpoint or Cortex XDR Pro per GB
request_dataObjectrequired
A dictionary containing the API request fields.
filtersArray
An array of filter fields for running the script on a number of endpoints at once.
fieldObject (Enum)
String that identifies a list the filters match. Filters are based on the following keywords:
- endpoint_id_list
: List of endpoint IDs.
operatorString (Enum)
String that identifies the comparison operator you want to use for this filter. Valid keywords and values are:
in
- endpoint_id_list
: List of strings
valueArray[string]
Value that this filter must match.
timeoutInteger
The timeout in seconds for this execution. Default value is 600.
snippet_codeString
Section of a script you want to initiate on an endpoint.
incident_idString
Incident ID. When included in the request, the Run Snippet Code Script action will appear in the Cortex XDR Incident View Timeline tab.
{
"request_data": {
"filters": [
{
"field": "endpoint_id_list",
"operator": "in",
"value": [
"<endpoint ID>"
]
}
],
"snippet_code": "print (\"7\")"
}
}
curl -X 'POST'
-H
'Accept: application/json'
-H
'Content-Type: application/json'
'https://api-yourfqdn/public_api/v1/scripts/run_snippet_code_script'
-d
''