Skip to content

Correlation Rules Admin

The Correlation Rules Admin service collection provides administrative operations for managing correlation rules. Change ownership of existing correlation rules to assign them to different API clients or users.

LanguageLast Update
Pythonv1.6.1
PowerShellv2.2.9
Gov0.20.0
TypeScriptv0.6.0
Rustv0.7.0
Rubyv1.2.0
OperationDescription
entities_rules_ownership_put_v1
change_correlation_rule_owner
Change the owner of an existing Correlation Rule

Change the owner of an existing Correlation Rule

PUT /correlation-rules/entities/rules/ownership/v1
Scope Correlation Rules Admin: WRITE Consumes · Produces application/json
PEP 8 change_correlation_rule_owner
NameTypeData typeDescription
bodybodydictionaryFull body payload in JSON format. Not required if using other keywords.
api_client_idbodystringThe API client ID.
idbodystringThe rule ID.
user_idbodystringThe user ID.
user_uuidbodystringThe user UUID.
from falconpy import CorrelationRulesAdmin
falcon = CorrelationRulesAdmin(client_id=CLIENT_ID,
client_secret=CLIENT_SECRET
)
response = falcon.change_correlation_rule_owner(api_client_id="string",
id="string",
user_id="string",
user_uuid="string")
print(response)