Skip to content

Real Time Response Audit

The Real Time Response Audit service collection provides operations for auditing RTR sessions created for a customer in a specified duration.

LanguageLast Update
Pythonv1.4.6
PowerShellv2.2.9
Gov0.20.0
TypeScriptv0.6.0
Rustv0.7.0
Rubyv1.2.0
OperationDescription
RTRAuditSessions
audit_sessions
Get all the RTR sessions created for a customer in a specified duration

Get all the RTR sessions created for a customer in a specified duration

GET /real-time-response-audit/combined/sessions/v1
Scope Real Time Response (Audit): READ Consumes · Produces application/json
PEP 8 audit_sessions
NameTypeData typeDescription
filterquerystringOptional filter criteria in FQL format.
sortquerystringSort order in FQL format.
limitquerystringMaximum number of sessions to be returned.
offsetquerystringOffset value to be used for paginating results.
with_command_infoquerybooleanRetrieve sessions with command info included; by default sessions are returned without command information which include cloud_request_ids and logs fields.
parametersquerydictionaryFull query string parameters payload in JSON format.
from falconpy import RealTimeResponseAudit
falcon = RealTimeResponseAudit(client_id=CLIENT_ID,
client_secret=CLIENT_SECRET
)
response = falcon.audit_sessions(filter="string",
limit=integer,
offset="string",
sort="string",
with_command_info="string")
print(response)