GET /v1/audit_log_types
Description
Provides a list of all the audit log types supported by the API.
Show Response Fields
Name | Type | Description |
---|---|---|
version | String | |
metadata.links.self | String | |
data | Array | |
data[].id | String | |
data[].name | String |
Examples
Fetch list of audit log types
Request
Requires AuthorizationGET /v1/audit_log_types
Headers
accept: application/json
content-type: application/json
accept-encoding: identity
authorization: Basic FILTERED
cURL Edit, then copy and paste on your terminal
curl -X GET \
-H 'accept: application/json' \
-H 'content-type: application/json' \
-H 'accept-encoding: identity' \
--compressed -H 'Accept-Encoding: gzip, deflate' \
-u YOUR_API_CLIENT_ID \
'https://api.amp.cisco.com/v1/audit_log_types'
Response
cURL Edit, then copy and paste on your terminal
curl -X GET \ -H 'accept: application/json' \ -H 'content-type: application/json' \ -H 'accept-encoding: identity' \ --compressed -H 'Accept-Encoding: gzip, deflate' \ -u YOUR_API_CLIENT_ID \ 'https://api.amp.cisco.com/v1/audit_log_types'
Shortened for readability
content-type: application/json transfer-encoding: chunked status: 200 OK x-ratelimit-limit: 3000 x-ratelimit-reset: 905 strict-transport-security: max-age=31536000; includeSubDomains, max-age=31536000 referrer-policy: strict-origin-when-cross-origin x-ratelimit-remaining: 2876 x-permitted-cross-domain-policies: none x-download-options: noopen etag: W/"f7b9b0a7e6a2749fbb83a9d97718a167" x-frame-options: SAMEORIGIN x-ratelimit-resetdate: 2022-03-18T11:55:11Z
{
"version": "v1.2.0",
"metadata": {
"links": {
"self": "https://api.amp.cisco.com/v1/audit_log_types"
}
},
"data": [
{
"id": "SignatureSet",
"name": "Advanced Custom Detection"
},
{
"id": "AllowList",
"name": "Allowed Application List"
}
]
}