post
/public_api/v1/audits/management_logs
Get audit management logs. - Response is concatenated using AND condition (OR is not supported). - Maximum result set size is 100. - Offset is the zero-based number of incidents from the start of the result set.
CURL
curl -X POST \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
"https://api-yourfqdn/public_api/v1/audits/management_logs" \
-d '{
"request_data" : {
"search_from" : 0,
"sort" : {
"field" : "type",
"keyword" : "desc"
},
"filters" : {
"field" : "field",
"value" : "value",
"operator" : "operator"
},
"search_to" : 6
}
}'
Response
{
"reply": {
"total_count": 1,
"result_count": 1,
"data": [
{
"AUDIT_ID": 1,
"AUDIT_OWNER_NAME": "User Name",
"AUDIT_OWNER_EMAIL": "username@paloaltonetworks.com",
"AUDIT_ASSET_JSON": "{}",
"AUDIT_ASSET_NAMES": "",
"AUDIT_HOSTNAME": "",
"AUDIT_RESULT": "SUCCESS",
"AUDIT_REASON": "",
"AUDIT_DESCRIPTION": "",
"AUDIT_ENTITY": "AUTH",
"AUDIT_ENTITY_SUBTYPE": "Login",
"AUDIT_SESSION_ID": 382303947890,
"AUDIT_CASE_ID": 473829372,
"AUDIT_INSERT_TIME": 1565074114053
}
]
}
}
Request
Body
optional
Note: You can send a request to retrieve either all or filtered results.
Example:
{"request_data":{"search_from":0,"search_to":19,"sort":{"field":"type","keyword":"asc"},"filters":[{"field":"type","operator":"in","value":["AUTH"]},{"field":"sub_type","operator":"in","value":["login"]},{"field":"result","operator":"in","value":["SUCCESS"]},{"field":"timestamp","operator":"lte","value":1565074114053}]}}
request_data
required
A dictionary containing the API request fields.
An empty dictionary returns all results.
search_from
optional
Integer
An integer representing the starting offset within the query result set from which you want management logs returned.
Management logs are returned as a zero-based list. Any log indexed less than this value is not returned in the final result set and defaults to zero.
search_to
optional
Integer
An integer representing the end offset within the result set after which you do not want management logs returned.
Logs in the management log list that are indexed higher than this value are not returned in the final results set. Defaults to 100, which returns all logs to the end of the list.
sort
optional
Identifies the sort order for the result set. By default the sort is defined as creation-time and desc.
field
optional
String
(Enum)
Allowed values:
type
sub-type
result
keyword
optional
String
(Enum)
Allowed values:
asc
desc
filters
optional
Array of filter fields.
field
optional
String
operator
optional
String
value
optional
String
Responses